Changeset 2989c7e in mainline for uspace/srv/net/udp/udp.c


Ignore:
Timestamp:
2015-05-25T21:04:33Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab6326bc
Parents:
58e9dec
Message:

Association map / portrange prototype.

File:
1 edited

Legend:

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

    r58e9dec r2989c7e  
    4141#include <task.h>
    4242
     43#include "assoc.h"
    4344#include "service.h"
    4445#include "udp_inet.h"
     
    5152
    5253        log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_init()");
     54
     55        rc = udp_assocs_init();
     56        if (rc != EOK) {
     57                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing associations.");
     58                return ENOMEM;
     59        }
    5360
    5461        rc = udp_inet_init();
Note: See TracChangeset for help on using the changeset viewer.