You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
665 B
16 lines
665 B
/* GetRoutingInfo() looks up routing information for the specified node and
|
|
returns whether an entry was found or not
|
|
*/
|
|
BOOL GetRoutingInfo( LPSTR lpszNodeName, LPSTR lpszRouteInfo,
|
|
int nMaxRouteInfo, BOOL FAR *pbDisconnect, int FAR *nDelay );
|
|
|
|
/* GetConnectionInfo() looks up connection information for
|
|
the specified node and returns whether an entry was found or not
|
|
*/
|
|
BOOL GetConnectionInfo( LPSTR lpszNodeName, LPSTR lpszNetIntf,
|
|
LPSTR lpszConnInfo, int nMaxConnInfo,
|
|
BOOL FAR *pbDisconnect, int FAR *nDelay );
|
|
|
|
BOOL ValidateSecurityInfo( void );
|
|
BOOL ValidateRoutingInfo( void );
|
|
BOOL ValidateConnectionInfo( void );
|