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