diff options
Diffstat (limited to 'src/core/aio.c')
| -rw-r--r-- | src/core/aio.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/core/aio.c b/src/core/aio.c index b67b7467..ee3d10a5 100644 --- a/src/core/aio.c +++ b/src/core/aio.c @@ -1,5 +1,5 @@ // -// Copyright 2018 Staysail Systems, Inc. <info@staysail.tech> +// Copyright 2019 Staysail Systems, Inc. <info@staysail.tech> // Copyright 2018 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a @@ -101,6 +101,12 @@ struct nng_aio { nni_list_node a_prov_node; void * a_prov_extra[4]; // Extra data used by provider + // Socket address. This turns out to be very useful, as we wind up + // needing socket addresses for numerous connection related routines. + // It would be cleaner to not have this and avoid burning the space, + // but having this hear dramatically simplifies lots of code. + nng_sockaddr a_sockaddr; + // Expire node. nni_list_node a_expire_node; }; @@ -765,3 +771,15 @@ nni_aio_sys_init(void) nni_thr_run(thr); return (0); } + +void +nni_aio_set_sockaddr(nni_aio *aio, const nng_sockaddr *sa) +{ + memcpy(&aio->a_sockaddr, sa, sizeof(*sa)); +} + +void +nni_aio_get_sockaddr(nni_aio *aio, nng_sockaddr *sa) +{ + memcpy(sa, &aio->a_sockaddr, sizeof(*sa)); +}
\ No newline at end of file |
