X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Finit.c;h=d41c4f8186acdc02261a473ae53c9b8c0288918d;hb=be243cfa9bedd8ac1b350a3af7c48d01800d8679;hp=bbed183fdf4fc8367d63d4630fdc96da2d2891dd;hpb=1a6ec3ee76a2e33d6c86ad81d00922dabe426f50;p=deb_libnfs.git diff --git a/lib/init.c b/lib/init.c index bbed183..d41c4f8 100644 --- a/lib/init.c +++ b/lib/init.c @@ -1,7 +1,10 @@ /* Copyright (C) 2010 by Ronnie Sahlberg - + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -91,6 +94,12 @@ struct rpc_context *rpc_init_context(void) return rpc; } +void rpc_set_readahead(struct rpc_context *rpc, uint32_t v) +{ + assert(rpc->magic == RPC_CONTEXT_MAGIC); + + rpc->readahead = v; +} struct rpc_context *rpc_init_udp_context(void) {