home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / rpcssm / rpcssms.c < prev    next >
C/C++ Source or Header  |  1996-06-11  |  4KB  |  138 lines

  1. /****************************************************************************
  2.                    Microsoft RPC Version 2.0
  3.            Copyright Microsoft Corp. 1992, 1993, 1994- 1996
  4.                         rpcssm Example
  5.  
  6.     FILE:       rpcssms.c
  7.  
  8.     USAGE:      rpcssms  -p protocol_sequence
  9.                          -e endpoint
  10.                          -m max calls
  11.                          -n min calls
  12.                          -f flag for RpcServerListen
  13.  
  14.     PURPOSE:    Server side of RPC distributed application rpcssm
  15.  
  16.     FUNCTIONS:  main() - registers server as RPC server
  17.  
  18.     COMMENTS:   This distributed application uses a context handle.
  19.  
  20. ****************************************************************************/
  21.  
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <ctype.h>
  25. #include "rpcssm.h"    // header file generated by MIDL compiler
  26.  
  27. #define PURPOSE \
  28. "This Microsoft RPC Version 2.0 sample program demonstrates\n\
  29. the [context_handle] attribute. For more information\n\
  30. about this attribute and the RPC API functions, see the\n\
  31. RPC programming guide and reference.\n\n"
  32.  
  33. void Usage(char * pszProgramName)
  34. {
  35.     fprintf(stderr, "%s", PURPOSE);
  36.     fprintf(stderr, "Usage:  %s\n", pszProgramName);
  37.     fprintf(stderr, " -p protocol_sequence\n");
  38.     fprintf(stderr, " -e endpoint\n");
  39.     fprintf(stderr, " -m maxcalls\n");
  40.     fprintf(stderr, " -n mincalls\n");
  41.     fprintf(stderr, " -f flag_wait_op\n");
  42.     exit(1);
  43. }
  44.  
  45. void _CRTAPI1 main(int argc, char * argv[])
  46. {
  47.     RPC_STATUS status;
  48.     unsigned char * pszProtocolSequence = "ncacn_np";
  49.     unsigned char * pszSecurity         = NULL;
  50.     unsigned char * pszEndpoint         = "\\pipe\\rpcssm";
  51.     unsigned int    cMinCalls           = 1;
  52.     unsigned int    cMaxCalls           = 20;
  53.     unsigned int    fDontWait           = TRUE;
  54.     int i;
  55.  
  56.     /* allow the user to override settings with command line switches */
  57.     for (i = 1; i < argc; i++) {
  58.         if ((*argv[i] == '-') || (*argv[i] == '/')) {
  59.             switch (tolower(*(argv[i]+1))) {
  60.             case 'p':  // protocol sequence
  61.                 pszProtocolSequence = argv[++i];
  62.                 break;
  63.             case 'e':
  64.                 pszEndpoint = argv[++i];
  65.                 break;
  66.             case 'm':
  67.                 cMaxCalls = (unsigned int) atoi(argv[++i]);
  68.                 break;
  69.             case 'n':
  70.                 cMinCalls = (unsigned int) atoi(argv[++i]);
  71.                 break;
  72.             case 'f':
  73.                 fDontWait = (unsigned int) atoi(argv[++i]);
  74.                 break;
  75.             case 'h':
  76.             case '?':
  77.             default:
  78.                 Usage(argv[0]);
  79.             }
  80.         }
  81.         else
  82.             Usage(argv[0]);
  83.     }
  84.  
  85.     status = RpcServerUseProtseqEp(pszProtocolSequence,
  86.                                    cMaxCalls,
  87.                                    pszEndpoint,
  88.                                    pszSecurity);  // Security descriptor
  89.     printf("RpcServerUseProtseqEp returned 0x%x\n", status);
  90.     if (status) {
  91.          exit(status);
  92.     }
  93.  
  94.     status = RpcServerRegisterIf(rpcssm_ServerIfHandle, // interface to register
  95.                                  NULL,   // MgrTypeUuid
  96.                                  NULL);  // MgrEpv; null means use default
  97.     printf("RpcServerRegisterIf returned 0x%x\n", status);
  98.     if (status) {
  99.         exit(status);
  100.     }
  101.  
  102.     printf("Calling RpcServerListen\n");
  103.     status = RpcServerListen(cMinCalls,
  104.                              cMaxCalls,
  105.                              fDontWait);
  106.     printf("RpcServerListen returned: 0x%x\n", status);
  107.     if (status) {
  108.         exit(status);
  109.     }
  110.  
  111.     if (fDontWait) {
  112.         printf("Calling RpcMgmtWaitServerListen\n");
  113.         status = RpcMgmtWaitServerListen();  //  wait operation
  114.         printf("RpcMgmtWaitServerListen returned: 0x%x\n", status);
  115.         if (status) {
  116.             exit(status);
  117.         }
  118.     }
  119.  
  120. } // end main()
  121.  
  122.  
  123. /*********************************************************************/
  124. /*                 MIDL allocate and free                            */
  125. /*********************************************************************/
  126.  
  127. void __RPC_FAR * __RPC_USER midl_user_allocate(size_t len)
  128. {
  129.     return(malloc(len));
  130. }
  131.  
  132. void __RPC_USER midl_user_free(void __RPC_FAR * ptr)
  133. {
  134.     free(ptr);
  135. }
  136.  
  137. /* end file rpcssms.c */
  138.