DOCTORS.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

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