Changes in uspace/srv/net/udp/udp.c [89ba88c:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/udp.c
r89ba88c r5a6cc679 47 47 #define NAME "udp" 48 48 49 static udp_assocs_dep_t udp_assocs_dep = {50 .get_srcaddr = udp_get_srcaddr,51 .transmit_msg = udp_transmit_msg52 };53 54 49 static errno_t udp_init(void) 55 50 { … … 58 53 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_init()"); 59 54 60 rc = udp_assocs_init( &udp_assocs_dep);55 rc = udp_assocs_init(); 61 56 if (rc != EOK) { 62 57 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing associations.");
Note:
See TracChangeset
for help on using the changeset viewer.