diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-10-28 14:54:37 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-10-28 14:54:37 -0700 |
| commit | 1401d2f622e52f0ca4e68fc932ded4f96801989f (patch) | |
| tree | 520be758e7a2b16b3db39d5b3becb22ca3b1b7ac /src | |
| parent | cbd8c5573ef6816d585d00d63568cf98aa6a97b8 (diff) | |
| download | nng-1401d2f622e52f0ca4e68fc932ded4f96801989f.tar.gz nng-1401d2f622e52f0ca4e68fc932ded4f96801989f.tar.bz2 nng-1401d2f622e52f0ca4e68fc932ded4f96801989f.zip | |
tls: move definitions to core nng.h
TLS is not really merely supplemental anymore. Its pretty fundamental.
Let's make it accessible directly. This will allow us to define
typed property access functions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stream.c b/src/core/stream.c index 95bc4123..2807f37f 100644 --- a/src/core/stream.c +++ b/src/core/stream.c @@ -22,8 +22,8 @@ static struct { const char *scheme; - int (*dialer_alloc)(nng_stream_dialer **, const nng_url *); - int (*listener_alloc)(nng_stream_listener **, const nng_url *); + int (*dialer_alloc)(nng_stream_dialer **, const nng_url *); + int (*listener_alloc)(nng_stream_listener **, const nng_url *); } stream_drivers[] = { { |
