## Include script - do connect and server accepts for driver
#
# Client connect to proxy
# Server accepts the connection
#
SCRIPT doconnect_accept_driver

	ECHO "Driver Sending Connect"
	SEND
		INVOKE SessionConnectL
		ENDINVOKE
	ENDSEND
#
# Wait for the cnf - this is given by EConnectedOK event
#
	ECHO "Waiting for cnf"
	EXPECT
		INVOCATION SessionRunL
			VALIDATE aEvent EConnectedOK
		ENDINVOCATION
	ENDEXPECT

ENDSCRIPT
