Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/udp/udp.c

    r2989c7e ra1a101d  
    4141#include <task.h>
    4242
    43 #include "assoc.h"
    44 #include "service.h"
    4543#include "udp_inet.h"
     44#include "sock.h"
    4645
    4746#define NAME       "udp"
     
    5352        log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_init()");
    5453
    55         rc = udp_assocs_init();
    56         if (rc != EOK) {
    57                 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing associations.");
    58                 return ENOMEM;
    59         }
    60 
    6154        rc = udp_inet_init();
    6255        if (rc != EOK) {
     
    6558        }
    6659
    67         rc = udp_service_init();
     60        rc = udp_sock_init();
    6861        if (rc != EOK) {
    69                 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing UDP service.");
     62                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing socket service.");
    7063                return ENOENT;
    7164        }
Note: See TracChangeset for help on using the changeset viewer.