/usr/include/nfsc/libnfs-raw-portmap.h is in libnfs-dev 1.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | /*
* Please do not edit this file.
* It was generated using rpcgen.
*/
#ifndef _PORTMAP_H_RPCGEN
#define _PORTMAP_H_RPCGEN
#include <rpc/rpc.h>
#ifdef __cplusplus
extern "C" {
#endif
#define PMAP_PORT 111
struct pmap_mapping {
u_int prog;
u_int vers;
u_int prot;
u_int port;
};
typedef struct pmap_mapping pmap_mapping;
struct pmap_call_args {
u_int prog;
u_int vers;
u_int proc;
struct {
u_int args_len;
char *args_val;
} args;
};
typedef struct pmap_call_args pmap_call_args;
struct pmap_call_result {
u_int port;
struct {
u_int res_len;
char *res_val;
} res;
};
typedef struct pmap_call_result pmap_call_result;
#define PMAP_PROGRAM 100000
#define PMAP_V2 2
#if defined(__STDC__) || defined(__cplusplus)
#define PMAP_NULL 0
extern void * pmap_null_2(void *, CLIENT *);
extern void * pmap_null_2_svc(void *, struct svc_req *);
#define PMAP_SET 1
extern bool_t * pmap_set_2(pmap_mapping *, CLIENT *);
extern bool_t * pmap_set_2_svc(pmap_mapping *, struct svc_req *);
#define PMAP_UNSET 2
extern bool_t * pmap_unset_2(pmap_mapping *, CLIENT *);
extern bool_t * pmap_unset_2_svc(pmap_mapping *, struct svc_req *);
#define PMAP_GETPORT 3
extern u_int * pmap_getport_2(pmap_mapping *, CLIENT *);
extern u_int * pmap_getport_2_svc(pmap_mapping *, struct svc_req *);
#define PMAP_CALLIT 5
extern pmap_call_result * pmap_callit_2(pmap_call_args *, CLIENT *);
extern pmap_call_result * pmap_callit_2_svc(pmap_call_args *, struct svc_req *);
extern int pmap_program_2_freeresult (SVCXPRT *, xdrproc_t, caddr_t);
#else /* K&R C */
#define PMAP_NULL 0
extern void * pmap_null_2();
extern void * pmap_null_2_svc();
#define PMAP_SET 1
extern bool_t * pmap_set_2();
extern bool_t * pmap_set_2_svc();
#define PMAP_UNSET 2
extern bool_t * pmap_unset_2();
extern bool_t * pmap_unset_2_svc();
#define PMAP_GETPORT 3
extern u_int * pmap_getport_2();
extern u_int * pmap_getport_2_svc();
#define PMAP_CALLIT 5
extern pmap_call_result * pmap_callit_2();
extern pmap_call_result * pmap_callit_2_svc();
extern int pmap_program_2_freeresult ();
#endif /* K&R C */
/* the xdr functions */
#if defined(__STDC__) || defined(__cplusplus)
extern bool_t xdr_pmap_mapping (XDR *, pmap_mapping*);
extern bool_t xdr_pmap_call_args (XDR *, pmap_call_args*);
extern bool_t xdr_pmap_call_result (XDR *, pmap_call_result*);
#else /* K&R C */
extern bool_t xdr_pmap_mapping ();
extern bool_t xdr_pmap_call_args ();
extern bool_t xdr_pmap_call_result ();
#endif /* K&R C */
#ifdef __cplusplus
}
#endif
#endif /* !_PORTMAP_H_RPCGEN */
|