add a 'is broadcast' flag to the rpc context structure
[deb_libnfs.git] / include / libnfs-private.h
CommitLineData
84004dbf
RS
1/*
2 Copyright (C) 2010 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
16*/
17#include <rpc/auth.h>
18
19struct rpc_context {
20 int fd;
21 int is_connected;
22
23 char *error_string;
24
25 rpc_cb connect_cb;
26 void *connect_data;
27
28 AUTH *auth;
29 unsigned long xid;
30
31 /* buffer used for encoding RPC PDU */
32 char *encodebuf;
33 int encodebuflen;
34
35 struct rpc_pdu *outqueue;
36 struct rpc_pdu *waitpdu;
37
84004dbf 38 int inpos;
cdb19ec1 39 int insize;
84004dbf 40 char *inbuf;
d16a3ca4
RS
41
42 /* special fields for UDP, which can sometimes be BROADCASTed */
43 int is_udp;
2ae46066 44 int is_broadcast;
84004dbf
RS
45};
46
47struct rpc_pdu {
48 struct rpc_pdu *next;
49
50 unsigned long xid;
51 XDR xdr;
52
53 int written;
54 struct rpc_data outdata;
55
56 rpc_cb cb;
57 void *private_data;
58
59 /* function to decode the xdr reply data and buffer to decode into */
60 xdrproc_t xdr_decode_fn;
61 caddr_t xdr_decode_buf;
62 int xdr_decode_bufsize;
63};
64
65struct rpc_pdu *rpc_allocate_pdu(struct rpc_context *rpc, int program, int version, int procedure, rpc_cb cb, void *private_data, xdrproc_t xdr_decode_fn, int xdr_bufsize);
66void rpc_free_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
67int rpc_queue_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
68int rpc_get_pdu_size(char *buf);
69int rpc_process_pdu(struct rpc_context *rpc, char *buf, int size);
70void rpc_error_all_pdus(struct rpc_context *rpc, char *error);
71
1896d37b
RS
72void rpc_set_error(struct rpc_context *rpc, char *error_string, ...);
73void nfs_set_error(struct nfs_context *nfs, char *error_string, ...);
74
df5af25f 75struct rpc_context *nfs_get_rpc_context(struct nfs_context *nfs);
1896d37b 76
9e00b8c6 77struct rpc_context *rpc_init_udp_context(void);