Changes in uspace/srv/net/udp/udp.c [2989c7e:a1a101d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/udp.c
r2989c7e ra1a101d 41 41 #include <task.h> 42 42 43 #include "assoc.h"44 #include "service.h"45 43 #include "udp_inet.h" 44 #include "sock.h" 46 45 47 46 #define NAME "udp" … … 53 52 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_init()"); 54 53 55 rc = udp_assocs_init();56 if (rc != EOK) {57 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing associations.");58 return ENOMEM;59 }60 61 54 rc = udp_inet_init(); 62 55 if (rc != EOK) { … … 65 58 } 66 59 67 rc = udp_s ervice_init();60 rc = udp_sock_init(); 68 61 if (rc != EOK) { 69 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing UDPservice.");62 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing socket service."); 70 63 return ENOENT; 71 64 }
Note:
See TracChangeset
for help on using the changeset viewer.