X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Finit.c;h=4c8f84f42308ea61c131089d4d35cc8d9b670720;hb=be7f59339ee92ae6ebc37ceb170a0287b99b71ae;hp=45aa78da9f295acb92c5da2d333a53744801b170;hpb=a8a1b85846aab042cd410bf59caf617a0951380e;p=deb_libnfs.git diff --git a/lib/init.c b/lib/init.c index 45aa78d..4c8f84f 100644 --- a/lib/init.c +++ b/lib/init.c @@ -77,12 +77,12 @@ struct rpc_context *rpc_init_udp_context(void) return rpc; } -void rpc_set_auth(struct rpc_context *rpc, struct AUTH *auth) +void rpc_set_auth(struct rpc_context *rpc, AUTH *auth) { if (rpc->auth != NULL) { auth_destroy(rpc->auth); } - rpc->auth = (AUTH *)auth; + rpc->auth = auth; } @@ -120,6 +120,44 @@ void rpc_error_all_pdus(struct rpc_context *rpc, char *error) } } +static void rpc_free_fragment(struct rpc_fragment *fragment) +{ + if (fragment->data != NULL) { + free(fragment->data); + } + free(fragment); +} + +void rpc_free_all_fragments(struct rpc_context *rpc) +{ + while (rpc->fragments != NULL) { + struct rpc_fragment *fragment = rpc->fragments; + + SLIST_REMOVE(&rpc->fragments, fragment); + rpc_free_fragment(fragment); + } +} + +int rpc_add_fragment(struct rpc_context *rpc, char *data, uint64_t size) +{ + struct rpc_fragment *fragment; + + fragment = malloc(sizeof(struct rpc_fragment)); + if (fragment == NULL) { + return -1; + } + + fragment->size = size; + fragment->data = malloc(fragment->size); + if(fragment->data == NULL) { + free(fragment); + return -1; + } + + memcpy(fragment->data, data, fragment->size); + SLIST_ADD_END(&rpc->fragments, fragment); + return 0; +} void rpc_destroy_context(struct rpc_context *rpc) { @@ -136,6 +174,8 @@ void rpc_destroy_context(struct rpc_context *rpc) rpc_free_pdu(rpc, pdu); } + rpc_free_all_fragments(rpc); + auth_destroy(rpc->auth); rpc->auth =NULL;