Changeset 058edb6 in mainline for uspace/srv


Ignore:
Timestamp:
2010-10-06T18:50:55Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bcafa70
Parents:
2aa15d4
Message:

Move socket_codes.h from libsocket to libc.

Remove stuff that was probably inappropriatelly taken from a Linux kernel
header.

Remove unneeded AF and PF codes.

Start assigning AF and PF codes sequentially. (These are not standardized.)

Location:
uspace/srv/net
Files:
4 edited

Legend:

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

    r2aa15d4 r058edb6  
    4646#include <sys/types.h>
    4747
     48#include <net/socket_codes.h>
     49
    4850#include <net_messages.h>
    4951#include <net_modules.h>
     
    6466#include <nil_interface.h>
    6567#include <tl_interface.h>
    66 #include <socket_codes.h>
    6768#include <adt/measured_strings.h>
    6869#include <adt/module_map.h>
  • uspace/srv/net/tl/icmp/icmp.c

    r2aa15d4 r058edb6  
    4949#include <err.h>
    5050
     51#include <net/socket_codes.h>
     52
    5153#include <net_messages.h>
    5254#include <net_modules.h>
     
    6668#include <ip_protocols.h>
    6769#include <net_interface.h>
    68 #include <socket_codes.h>
    6970#include <tl_messages.h>
    7071#include <tl_interface.h>
  • uspace/srv/net/tl/tcp/tcp.c

    r2aa15d4 r058edb6  
    4848#include <ipc/services.h>
    4949
     50#include <net/socket_codes.h>
     51
    5052#include <net_messages.h>
    5153#include <net_modules.h>
     
    6365#include <icmp_interface.h>
    6466#include <net_interface.h>
    65 #include <socket_codes.h>
    6667#include <tcp_codes.h>
    6768#include <socket_core.h>
  • uspace/srv/net/tl/udp/udp.c

    r2aa15d4 r058edb6  
    4444#include <errno.h>
    4545#include <err.h>
     46
     47#include <net/socket_codes.h>
    4648
    4749#include <net_messages.h>
     
    6062#include <icmp_interface.h>
    6163#include <net_interface.h>
    62 #include <socket_codes.h>
    6364#include <socket_core.h>
    6465#include <socket_messages.h>
Note: See TracChangeset for help on using the changeset viewer.