Ignore:
File:
1 edited

Legend:

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

    r417a2ba1 ra17356fd  
    3838#include <stdint.h>
    3939#include <loc.h>
     40#include <net/socket_codes.h>
    4041#include <inet/addr.h>
    4142#include <inet/iplink_srv.h>
     
    276277
    277278pass:
    278                 rc = iplink_ev_recv(&slip_iplink, &sdu, ip_v4);
     279                rc = iplink_ev_recv(&slip_iplink, &sdu, AF_INET);
    279280                if (rc != EOK) {
    280281                        log_msg(LOG_DEFAULT, LVL_ERROR,
     
    332333                    "Failed to connect to service %s (ID=%d)",
    333334                    svcstr, (int) svcid);
    334                 return ENOENT;
     335                return rc;
    335336        }
    336337        slip_iplink.arg = sess_out;
     
    341342                    "Failed to connect to service %s (ID=%d)",
    342343                    svcstr, (int) svcid);
    343                 rc = ENOENT;
    344344                goto fail;
    345345        }
     
    365365                log_msg(LOG_DEFAULT, LVL_ERROR,
    366366                    "Failed to create receive fibril.");
    367                 rc = ENOENT;
    368367                goto fail;
    369368        }
Note: See TracChangeset for help on using the changeset viewer.