Changeset e98b1d5 in mainline for uspace/srv


Ignore:
Timestamp:
2010-09-26T11:37:37Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c5b59ce
Parents:
29fa68b
Message:

Include socket and networking error codes in the standard library's errno.h.

Location:
uspace/srv/net
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/ip/ip.c

    r29fa68b re98b1d5  
    6565#include <tl_interface.h>
    6666#include <socket_codes.h>
    67 #include <socket_errno.h>
    6867#include <adt/measured_strings.h>
    6968#include <adt/module_map.h>
  • uspace/srv/net/tl/icmp/icmp.c

    r29fa68b re98b1d5  
    4646#include <sys/time.h>
    4747#include <sys/types.h>
     48#include <errno.h>
    4849
    4950#include <net_err.h>
     
    6667#include <net_interface.h>
    6768#include <socket_codes.h>
    68 #include <socket_errno.h>
    6969#include <tl_messages.h>
    7070#include <tl_interface.h>
  • uspace/srv/net/tl/tcp/tcp.c

    r29fa68b re98b1d5  
    4242//TODO remove stdio
    4343#include <stdio.h>
     44#include <errno.h>
    4445
    4546#include <ipc/ipc.h>
     
    6364#include <net_interface.h>
    6465#include <socket_codes.h>
    65 #include <socket_errno.h>
    6666#include <tcp_codes.h>
    6767#include <socket_core.h>
  • uspace/srv/net/tl/udp/udp.c

    r29fa68b re98b1d5  
    4242#include <ipc/ipc.h>
    4343#include <ipc/services.h>
     44#include <errno.h>
    4445
    4546#include <net_err.h>
     
    6061#include <net_interface.h>
    6162#include <socket_codes.h>
    62 #include <socket_errno.h>
    6363#include <socket_core.h>
    6464#include <socket_messages.h>
Note: See TracChangeset for help on using the changeset viewer.