diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-14 10:21:39 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-14 10:21:39 -0800 |
| commit | e0543fecaeb01ccdf7512004c54cd72b143b67c8 (patch) | |
| tree | e369ac7c00cb96690327a96e04caaff83b15f658 /src/core/transport.h | |
| parent | 75aee14e2951cfbd4d8d22375a9f4301890da1ee (diff) | |
| download | nng-e0543fecaeb01ccdf7512004c54cd72b143b67c8.tar.gz nng-e0543fecaeb01ccdf7512004c54cd72b143b67c8.tar.bz2 nng-e0543fecaeb01ccdf7512004c54cd72b143b67c8.zip | |
Some endpoint work started.
Diffstat (limited to 'src/core/transport.h')
| -rw-r--r-- | src/core/transport.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/transport.h b/src/core/transport.h index 71eb8a28..4edfecf5 100644 --- a/src/core/transport.h +++ b/src/core/transport.h @@ -173,4 +173,12 @@ struct nni_pipe_ops { int (*p_getopt)(void *, int, void *, size_t *); }; +/* + * These APIs are used by the framework internally, and not for use by + * transport implementations. + */ +extern struct nni_transport *nni_transport_find(const char *); +extern void nni_transport_init(void); +extern void nni_transport_fini(void); + #endif /* CORE_TRANSPORT_H */ |
