diff options
| author | Garrett D'Amore <garrett@damore.org> | 2021-07-11 12:01:26 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2021-07-11 12:01:26 -0700 |
| commit | 5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4 (patch) | |
| tree | 8d14b20f4561fd02ca137f9e7ea7254200893fb4 /src/sp/transport.h | |
| parent | facfd16307feff9fab997b3919b71780d1f174c8 (diff) | |
| download | nng-5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4.tar.gz nng-5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4.tar.bz2 nng-5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4.zip | |
More symbol renaming
Diffstat (limited to 'src/sp/transport.h')
| -rw-r--r-- | src/sp/transport.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sp/transport.h b/src/sp/transport.h index d28053b9..dfa1509f 100644 --- a/src/sp/transport.h +++ b/src/sp/transport.h @@ -181,9 +181,9 @@ struct nni_sp_tran { // These APIs are used by the framework internally, and not for use by // transport implementations. -extern nni_sp_tran *nni_tran_find(nni_url *); -extern int nni_tran_sys_init(void); -extern void nni_tran_sys_fini(void); -extern int nni_tran_register(const nni_sp_tran *); +extern nni_sp_tran *nni_sp_tran_find(nni_url *url); +extern int nni_sp_tran_sys_init(void); +extern void nni_sp_tran_sys_fini(void); +extern int nni_sp_tran_register(const nni_sp_tran *tran); #endif // CORE_TRANSPORT_H |
