aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/clnt.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r--net/sunrpc/clnt.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index d003c2f5688f..94768cf5fd5b 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -533,6 +533,27 @@ rpc_call_setup(struct rpc_task *task, struct rpc_message *msg, int flags)
533 task->tk_action = rpc_exit_task; 533 task->tk_action = rpc_exit_task;
534} 534}
535 535
536/**
537 * rpc_peeraddr - extract remote peer address from clnt's xprt
538 * @clnt: RPC client structure
539 * @buf: target buffer
540 * @size: length of target buffer
541 *
542 * Returns the number of bytes that are actually in the stored address.
543 */
544size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
545{
546 size_t bytes;
547 struct rpc_xprt *xprt = clnt->cl_xprt;
548
549 bytes = sizeof(xprt->addr);
550 if (bytes > bufsize)
551 bytes = bufsize;
552 memcpy(buf, &clnt->cl_xprt->addr, bytes);
553 return sizeof(xprt->addr);
554}
555EXPORT_SYMBOL(rpc_peeraddr);
556
536void 557void
537rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize) 558rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
538{ 559{