// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) Microsoft Corporation. All rights reserved. /**************************************************************************** Microsoft RPC dynept Example FILE: dynepts.c USAGE: dynepts -p protocol_sequence -m max calls -a server principal name -n min calls -f flag for RpcServerListen PURPOSE: Server side of RPC distributed application dynept FUNCTIONS: main() - registers server as RPC server COMMENTS: This version of the distributed application that prints "What a dynamic world" (or other string) on the server features a client that manages its connection to the server. It uses the binding handle dynept_IfHandle, defined in the file dynept.h. ****************************************************************************/ #include #include #include #include "dynept.h" // header file generated by MIDL compiler #include "spn.h" #define PURPOSE \ "This Microsoft RPC Version 2.0 sample program demonstrates\n\ the use of dynamic endpoints. For more information\n\ about the attributes and the RPC API functions, see the\n\ RPC programming guide and reference.\n\n" void Usage(char * pszProgramName) { fprintf_s(stderr, "%s", PURPOSE); fprintf_s(stderr, "Usage: %s\n", pszProgramName); fprintf_s(stderr, " -p protocol_sequence\n"); fprintf_s(stderr, " -a server principal name\n"); fprintf_s(stderr, " -m maxcalls\n"); fprintf_s(stderr, " -n mincalls\n"); fprintf_s(stderr, " -f flag_wait_op\n"); exit(1); } /* main: register the interface, start listening for clients */ void __cdecl main(int argc, char * argv[]) { RPC_STATUS status; RPC_BINDING_VECTOR * pBindingVector = NULL; unsigned char * pszProtocolSequence = "ncacn_ip_tcp"; unsigned char * pszSecurity = NULL; unsigned char * pszSpn = NULL; unsigned int cMinCalls = 1; unsigned int cMaxCalls = 20; unsigned int fDontWait = FALSE; unsigned int fRegistered = 0; unsigned int fEndpoint = 0; int i; /* allow the user to override settings with command line switches */ for (i = 1; i < argc; i++) { if ((*argv[i] == '-') || (*argv[i] == '/')) { switch (tolower(*(argv[i]+1))) { case 'p': // protocol sequence pszProtocolSequence = argv[++i]; break; case 'a': pszSpn = argv[++i]; break; case 'm': cMaxCalls = (unsigned int) atoi(argv[++i]); break; case 'n': cMinCalls = (unsigned int) atoi(argv[++i]); break; case 'f': fDontWait = (unsigned int) atoi(argv[++i]); break; case 'h': case '?': default: Usage(argv[0]); } } else Usage(argv[0]); } status = RpcServerUseProtseq(pszProtocolSequence, cMaxCalls, pszSecurity); // Security descriptor printf_s("RpcServerUseProtseq returned 0x%x\n", status); if (status) { goto cleanup; } /* User did not specify spn, construct one. */ if (pszSpn == NULL) { MakeSpn(&pszSpn); } /* Using Negotiate as security provider */ status = RpcServerRegisterAuthInfo(pszSpn, RPC_C_AUTHN_GSS_NEGOTIATE, NULL, NULL); printf_s("RpcServerRegisterAuthInfo returned 0x%x\n", status); if (status) { exit(status); } status = RpcServerRegisterIfEx(dynept_ServerIfHandle, NULL, NULL, 0, RPC_C_LISTEN_MAX_CALLS_DEFAULT, NULL ); printf_s("RpcServerRegisterIfEx returned 0x%x\n", status); if (status) { goto cleanup; } else fRegistered = 1; status = RpcServerInqBindings(&pBindingVector); printf_s("RpcServerInqBindings returned 0x%x\n", status); if (status) { goto cleanup; } status = RpcEpRegister( dynept_ServerIfHandle, pBindingVector, NULL, "" ); printf_s("RpcEpRegister returned: 0x%x\n", status); if (status) { goto cleanup; } else fEndpoint = 1; printf_s("Calling RpcServerListen\n"); status = RpcServerListen(cMinCalls, cMaxCalls, fDontWait); printf_s("RpcServerListen returned: 0x%x\n", status); if (status) { goto cleanup; } if (fDontWait) { printf_s("Calling RpcMgmtWaitServerListen\n"); status = RpcMgmtWaitServerListen(); // wait operation printf_s("RpcMgmtWaitServerListen returned: 0x%x\n", status); } cleanup: if ( fEndpoint ) { status = RpcEpUnregister(dynept_ServerIfHandle, pBindingVector, NULL); printf_s( "RpcEpUnregister returned 0x%x\n", status); } if ( pBindingVector ) { status = RpcBindingVectorFree(&pBindingVector); printf_s( "RpcBindingVectorFree returned 0x%x\n", status); } if ( fRegistered ) { printf_s("Calling RpcServerUnregisterIf\n"); status = RpcServerUnregisterIf(NULL, NULL, FALSE); printf_s("RpcServerUnregisterIf returned 0x%x\n", status); } exit (status); } // end main() /*********************************************************************/ /* MIDL allocate and free */ /*********************************************************************/ void __RPC_FAR * __RPC_USER midl_user_allocate(size_t len) { return(malloc(len)); } void __RPC_USER midl_user_free(void __RPC_FAR * ptr) { free(ptr); } /* end file dynepts.c */