Changeset d9e2e0e in mainline


Ignore:
Timestamp:
2010-10-06T22:53:20Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c0e74b1, d52fbaf
Parents:
c7a8442
Message:

Move the client socket code to the standard library.

Location:
uspace
Files:
2 added
2 deleted
10 edited
2 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/netecho/netecho.c

    rc7a8442 rd9e2e0e  
    4646#include <net/in6.h>
    4747#include <net/inet.h>
    48 #include <socket.h>
    49 #include <socket_parse.h>
     48#include <net/socket.h>
     49#include <net/socket_parse.h>
    5050
    5151#include "print_error.h"
  • uspace/app/nettest1/nettest.c

    rc7a8442 rd9e2e0e  
    3838#include <err.h>
    3939
    40 #include <socket.h>
     40#include <net/socket.h>
    4141
    4242#include "nettest.h"
  • uspace/app/nettest1/nettest.h

    rc7a8442 rd9e2e0e  
    3838#define __NET_TEST__
    3939
    40 #include <socket.h>
     40#include <net/socket.h>
    4141
    4242/** Prints a mark.
  • uspace/app/nettest1/nettest1.c

    rc7a8442 rd9e2e0e  
    4646#include <net/in6.h>
    4747#include <net/inet.h>
    48 #include <socket.h>
    49 #include <socket_parse.h>
     48#include <net/socket.h>
     49#include <net/socket_parse.h>
    5050
    5151#include "nettest.h"
  • uspace/app/nettest2/nettest2.c

    rc7a8442 rd9e2e0e  
    4646#include <net/in6.h>
    4747#include <net/inet.h>
    48 #include <socket.h>
    49 #include <socket_parse.h>
     48#include <net/socket.h>
     49#include <net/socket_parse.h>
    5050
    5151#include "nettest.h"
  • uspace/app/ping/ping.c

    rc7a8442 rd9e2e0e  
    4949#include <net/in6.h>
    5050#include <net/inet.h>
     51#include <net/socket_parse.h>
    5152#include <ip_codes.h>
    52 #include <socket_parse.h>
    5353
    5454#include "print_error.h"
  • uspace/lib/c/Makefile

    rc7a8442 rd9e2e0e  
    101101        generic/net/inet.c \
    102102        generic/net/modules.c \
     103        generic/net/socket_client.c \
     104        generic/net/socket_parse.c \
    103105        generic/stacktrace.c \
    104106        generic/arg_parse.c \
  • uspace/lib/c/generic/net/socket_parse.c

    rc7a8442 rd9e2e0e  
    3535 */
    3636
    37 #include <socket_parse.h>
     37#include <net/socket_parse.h>
     38#include <net/socket.h>
    3839#include <arg_parse.h>
    3940#include <errno.h>
    4041#include <str.h>
    41 #include <socket.h>
    4242
    4343/** Translate the character string to the address family number.
  • uspace/lib/net/include/ip_local.h

    rc7a8442 rd9e2e0e  
    4040#include <net/inet.h>
    4141#include <net/in.h>
    42 #include <socket.h>
    4342
    4443extern int ip_received_error_msg_local(int, device_id_t, packet_t, services_t,
  • uspace/lib/net/include/ip_remote.h

    rc7a8442 rd9e2e0e  
    4040#include <net/inet.h>
    4141#include <net/in.h>
    42 #include <socket.h>
    4342
    4443extern int ip_set_gateway_req_remote(int, device_id_t, in_addr_t);
  • uspace/lib/socket/Makefile

    rc7a8442 rd9e2e0e  
    3333
    3434SOURCES = \
    35         generic/socket_client.c \
    3635        generic/socket_core.c \
    37         generic/socket_parse.c \
    3836        generic/icmp_common.c \
    3937        generic/icmp_api.c \
Note: See TracChangeset for help on using the changeset viewer.