Changes in uspace/lib/net/include/tl_skel.h [ffa2c8ef:6b82009] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/tl_skel.h
rffa2c8ef r6b82009 39 39 */ 40 40 41 #include <async.h>42 41 #include <fibril_synch.h> 43 42 #include <ipc/services.h> 44 45 43 #include <adt/measured_strings.h> 46 44 #include <net/device.h> 47 45 #include <net/packet.h> 46 #include <async.h> 48 47 49 48 /** Module initialization. … … 51 50 * This has to be implemented in user code. 52 51 * 53 * @param[in] net_phone Networking module phone.52 * @param[in] sess Networking module session. 54 53 * 55 54 * @return EOK on success. … … 58 57 * 59 58 */ 60 extern int tl_initialize( int net_phone);59 extern int tl_initialize(async_sess_t *sess); 61 60 62 61 /** Per-connection module initialization. … … 83 82 ipc_call_t *, size_t *); 84 83 85 extern int tl_module_start( int);84 extern int tl_module_start(sysarg_t); 86 85 87 86 #endif
Note:
See TracChangeset
for help on using the changeset viewer.