pmap_getmaps.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* pmap_getmaps.c - client interface to pmap rpc service */
  2. /* Copyright 1984-2000 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (C) 1984, Sun Microsystems, Inc.
  6.  *
  7.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  8.  * unrestricted use provided that this legend is included on all tape
  9.  * media and as a part of the software program in whole or part.  Users
  10.  * may copy or modify Sun RPC without charge, but are not authorized
  11.  * to license or distribute it to anyone else except as part of a product or
  12.  * program developed by the user.
  13.  *
  14.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  15.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  16.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  17.  *
  18.  * Sun RPC is provided with no support and without any obligation on the
  19.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  20.  * modification or enhancement.
  21.  *
  22.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  23.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  24.  * OR ANY PART THEREOF.
  25.  *
  26.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  27.  * or profits or other special, indirect and consequential damages, even if
  28.  * Sun has been advised of the possibility of such damages.
  29.  *
  30.  * Sun Microsystems, Inc.
  31.  * 2550 Garcia Avenue
  32.  * Mountain View, California  94043
  33.  */
  34. /*
  35. modification history
  36. --------------------
  37. 01j,18apr00,ham  fixed compilation warnings.
  38. 01i,11aug93,jmm  Changed ioctl.h and socket.h to sys/ioctl.h and sys/socket.h
  39. 01h,26may92,rrr  the tree shuffle
  40.   -changed includes to have absolute path from h/
  41. 01g,04oct91,rrr  passed through the ansification filter
  42.   -changed includes to have absolute path from h/
  43.   -changed copyright notice
  44. 01f,01apr91,elh   added pmap_getmapsInclude.
  45. 01e,25oct90,dnw   removed include of utime.h.
  46. 01d,19apr90,hjb   de-linted.
  47. 01c,27oct89,hjb   upgraded to 4.0
  48. 01b,11nov87,jlf   added wrs copyright, title, mod history, etc.
  49. 01a,01nov87,rdc   first VxWorks version
  50. */
  51. #ifndef lint
  52. /* static char sccsid[] = "@(#)pmap_getmaps.c 1.1 86/02/03 Copyr 1984 Sun Micro"; */
  53. #endif
  54. /*
  55.  * pmap_getmap.c
  56.  * Client interface to pmap rpc service.
  57.  * contains pmap_getmaps, which is only tcp service involved
  58.  *
  59.  */
  60. #include "rpc/rpctypes.h"
  61. #include "netinet/in.h"
  62. #include "rpc/xdr.h"
  63. #include "rpc/auth.h"
  64. #include "rpc/clnt.h"
  65. #include "rpc/rpc_msg.h"
  66. #include "rpc/pmap_prot.h"
  67. #include "rpc/pmap_clnt.h"
  68. #include "sys/socket.h"
  69. /* #include <netdb.h> */
  70. /* #include <stdio.h> */
  71. #include "errno.h"
  72. #include "net/if.h"
  73. #include "sys/ioctl.h"
  74. #include "vxWorks.h"
  75. #include "ioLib.h"
  76. /* XXX #define NAMELEN 255 4.0 */
  77. /* XXX#define MAX_BROADCAST_SIZE 1400 4.0 */
  78. /* XXX extern int errno; */
  79. /* XXX static struct sockaddr_in myaddress; 4.0 */
  80. void pmap_getmapsInclude ()
  81.     {
  82.     }
  83. /*
  84.  * Get a copy of the current port maps.
  85.  * Calls the pmap service remotely to do get the maps.
  86.  */
  87. struct pmaplist *
  88. pmap_getmaps(address)
  89.  struct sockaddr_in *address;
  90. {
  91. struct pmaplist *head = (struct pmaplist *)NULL;
  92. int socket = -1;
  93. struct timeval minutetimeout;
  94. register CLIENT *client;
  95. minutetimeout.tv_sec = 60;
  96. minutetimeout.tv_usec = 0;
  97. address->sin_port = htons((u_short) PMAPPORT);
  98. client = clnttcp_create(address, PMAPPROG,
  99.     PMAPVERS, &socket, 50, 500);
  100. if (client != (CLIENT *)NULL) {
  101. if (CLNT_CALL(client, PMAPPROC_DUMP, xdr_void, NULL, xdr_pmaplist,
  102.     &head, minutetimeout) != RPC_SUCCESS) {
  103. clnt_perror(client, "pmap_getmaps rpc problem");
  104. }
  105. CLNT_DESTROY(client);
  106. }
  107. (void)close(socket);
  108. address->sin_port = 0;
  109. return (head);
  110. }