mytest_svc.c
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:2k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  * Please do not edit this file.
  3.  * It was generated using rpcgen.
  4.  */
  5. #include "mytest.h"
  6. #include <stdio.h>
  7. #include <stdlib.h>/* getenv, exit */
  8. #include <rpc/pmap_clnt.h> /* for pmap_unset */
  9. #include <string.h> /* strcmp */ 
  10. #include <memory.h>
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #ifdef __STDC__
  14. #define SIG_PF void(*)(int)
  15. #endif
  16. static void
  17. ct_p_2(struct svc_req *rqstp, register SVCXPRT *transp)
  18. {
  19. union {
  20. int fill;
  21. } argument;
  22. char *result;
  23. xdrproc_t xdr_argument, xdr_result;
  24. char *(*local)(char *, struct svc_req *);
  25. switch (rqstp->rq_proc) {
  26. case NULLPROC:
  27. (void) svc_sendreply(transp, (xdrproc_t) xdr_void, (char *)NULL);
  28. return;
  29. case CT_P:
  30. xdr_argument = (xdrproc_t) xdr_void;
  31. xdr_result = (xdrproc_t) xdr_int;
  32. local = (char *(*)(char *, struct svc_req *)) ct_p_2_svc;
  33. break;
  34. default:
  35. svcerr_noproc(transp);
  36. return;
  37. }
  38. (void) memset((char *)&argument, 0, sizeof (argument));
  39. if (!svc_getargs(transp, xdr_argument, (caddr_t) &argument)) {
  40. svcerr_decode(transp);
  41. return;
  42. }
  43. result = (*local)((char *)&argument, rqstp);
  44. if (result != NULL && !svc_sendreply(transp, xdr_result, result)) {
  45. svcerr_systemerr(transp);
  46. }
  47. if (!svc_freeargs(transp, xdr_argument, (caddr_t) &argument)) {
  48. fprintf(stderr, "unable to free arguments");
  49. exit(1);
  50. }
  51. return;
  52. }
  53. int
  54. main(int argc, char **argv)
  55. {
  56. register SVCXPRT *transp;
  57. (void) pmap_unset(CT_P, CT_V);
  58. transp = svcudp_create(RPC_ANYSOCK);
  59. if (transp == NULL) {
  60. fprintf(stderr, "cannot create udp service.");
  61. exit(1);
  62. }
  63. if (!svc_register(transp, CT_P, CT_V, ct_p_2, IPPROTO_UDP)) {
  64. fprintf(stderr, "unable to register (CT_P, CT_V, udp).");
  65. exit(1);
  66. }
  67. transp = svctcp_create(RPC_ANYSOCK, 0, 0);
  68. if (transp == NULL) {
  69. fprintf(stderr, "cannot create tcp service.");
  70. exit(1);
  71. }
  72. if (!svc_register(transp, CT_P, CT_V, ct_p_2, IPPROTO_TCP)) {
  73. fprintf(stderr, "unable to register (CT_P, CT_V, tcp).");
  74. exit(1);
  75. }
  76. svc_run();
  77. fprintf(stderr, "svc_run returned");
  78. exit(1);
  79. /* NOTREACHED */
  80. }