To connect to the server from your C program:
// Set the Server and Port properties to determine where to connect to RPCBPropSet(RPCBroker,"Server", "BROKERSERVER"); RPCBPropSet(RPCBroker, "ListenerPort", "9200");
// Set Connected property to True, to connect RPCBPropSet(RPCBroker, "Connected", "1");
// If still connected, can continue. RPCBPropGet(RPCBroker, "Connected", Value); if (atoi(Value) != 1) return false;
// Create Context for your application's option (in this // case, XWB EGCHO). result = RPCBCreateContext(RPCBroker, "XWB EGCHO"); return result;