dce_server_use_protseq - Tells DCE to use the specified protocol sequence for receiving remote procedure calls
Used by server applications.
#include <dce/dced.h>
void dce_server_use_protseq(
dce_server_handle_t server_handle,
unsigned char *protseq,
error_status_t *status);
The dce_server_use_protseq() routine registers an individual protocol sequence with DCE. Typical servers use all valid protocol sequences, the default behavior for the dce_server_register() call, and so most servers do not need to call this dce_server_use_protseq() routine. However, this routine may be called prior to dce_server_register(), to restrict the protocol sequences used. A server must register at least one protocol sequence with the RPC runtime to receive remote procedure call requests. A server can call this routine multiple times to register additional protocol sequences.
Routines: rpc_intro(3rpc), dce_server_register(3dce),
rpc_server_use_protseq(3rpc).
Books: OSF DCE Application Development Guide.