Changeset 8d2dd7f2 in mainline for uspace/srv/net
- Timestamp:
- 2017-05-13T19:03:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/srv/net
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/transport.h
re48947e r8d2dd7f2 40 40 #include <inet/udp.h> 41 41 #include <ipc/loc.h> 42 #include <s ys/types.h>42 #include <stddef.h> 43 43 44 44 struct dhcp_transport; -
uspace/srv/net/ethip/ethip.h
re48947e r8d2dd7f2 43 43 #include <inet/addr.h> 44 44 #include <loc.h> 45 #include <sys/types.h> 45 #include <stddef.h> 46 #include <stdint.h> 46 47 47 48 typedef struct { -
uspace/srv/net/ethip/std.h
re48947e r8d2dd7f2 38 38 #define ETHIP_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <inet/addr.h> 42 42 -
uspace/srv/net/inetsrv/addrobj.h
re48947e r8d2dd7f2 38 38 #define INET_ADDROBJ_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include "inetsrv.h" 42 43 -
uspace/srv/net/inetsrv/icmp_std.h
re48947e r8d2dd7f2 38 38 #define ICMP_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP_PROTO_ICMP 1 -
uspace/srv/net/inetsrv/icmpv6_std.h
re48947e r8d2dd7f2 38 38 #define ICMPV6_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP_PROTO_ICMPV6 58 -
uspace/srv/net/inetsrv/inet_link.h
re48947e r8d2dd7f2 38 38 #define INET_LINK_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include "inetsrv.h" 42 43 -
uspace/srv/net/inetsrv/inet_std.h
re48947e r8d2dd7f2 38 38 #define INET_STD_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP6_NEXT_FRAGMENT 44 -
uspace/srv/net/inetsrv/inetcfg.c
re48947e r8d2dd7f2 43 43 #include <stdlib.h> 44 44 #include <str.h> 45 #include <s ys/types.h>45 #include <stddef.h> 46 46 #include <types/inetcfg.h> 47 47 -
uspace/srv/net/inetsrv/inetping.c
re48947e r8d2dd7f2 43 43 #include <loc.h> 44 44 #include <stdlib.h> 45 #include <sys/types.h> 45 #include <stddef.h> 46 #include <stdint.h> 46 47 #include <types/inetping.h> 47 48 #include "icmp.h" -
uspace/srv/net/inetsrv/inetsrv.c
re48947e r8d2dd7f2 45 45 #include <stdio.h> 46 46 #include <stdlib.h> 47 #include <sys/types.h> 47 #include <stddef.h> 48 #include <stdint.h> 48 49 #include <task.h> 49 50 #include "addrobj.h" -
uspace/srv/net/inetsrv/inetsrv.h
re48947e r8d2dd7f2 43 43 #include <inet/iplink.h> 44 44 #include <ipc/loc.h> 45 #include <sys/types.h> 45 #include <stddef.h> 46 #include <stdint.h> 46 47 #include <types/inet.h> 47 48 #include <async.h> -
uspace/srv/net/inetsrv/ndp.h
re48947e r8d2dd7f2 38 38 #define NDP_H_ 39 39 40 #include <sys/types.h>41 40 #include <inet/addr.h> 42 41 #include "inetsrv.h" -
uspace/srv/net/inetsrv/pdu.h
re48947e r8d2dd7f2 39 39 40 40 #include <loc.h> 41 #include <sys/types.h> 41 #include <stddef.h> 42 #include <stdint.h> 42 43 #include "inetsrv.h" 43 44 #include "ndp.h" -
uspace/srv/net/inetsrv/reass.h
re48947e r8d2dd7f2 38 38 #define INET_REASS_H_ 39 39 40 #include <sys/types.h>41 40 #include "inetsrv.h" 42 41 -
uspace/srv/net/inetsrv/sroute.h
re48947e r8d2dd7f2 38 38 #define INET_SROUTE_H_ 39 39 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include "inetsrv.h" 42 43 -
uspace/srv/net/nconfsrv/iplink.h
re48947e r8d2dd7f2 38 38 #define NCONFSRV_IPLINK_H_ 39 39 40 #include <s ys/types.h>40 #include <stddef.h> 41 41 #include "nconfsrv.h" 42 42 -
uspace/srv/net/nconfsrv/nconfsrv.c
re48947e r8d2dd7f2 47 47 #include <stdio.h> 48 48 #include <stdlib.h> 49 #include <sys/types.h>50 49 #include <task.h> 51 50 #include "iplink.h" -
uspace/srv/net/tcp/pdu.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/endpoint.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include "std.h" 41 41 #include "tcp_type.h" -
uspace/srv/net/tcp/segment.h
re48947e r8d2dd7f2 36 36 #define SEGMENT_H 37 37 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 #include "tcp_type.h" 40 41 -
uspace/srv/net/tcp/seq_no.c
re48947e r8d2dd7f2 37 37 #include <assert.h> 38 38 #include <stdbool.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include "seq_no.h" 41 41 #include "tcp_type.h" -
uspace/srv/net/tcp/seq_no.h
re48947e r8d2dd7f2 36 36 #define SEQ_NO_H 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include "tcp_type.h" 40 40 -
uspace/srv/net/tcp/std.h
re48947e r8d2dd7f2 38 38 #define STD_H 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <inet/addr.h> 42 42 -
uspace/srv/net/tcp/tcp_type.h
re48947e r8d2dd7f2 41 41 #include <fibril.h> 42 42 #include <fibril_synch.h> 43 #include <sys/types.h> 43 #include <stddef.h> 44 #include <stdint.h> 44 45 #include <inet/addr.h> 45 46 #include <inet/endpoint.h> -
uspace/srv/net/tcp/ucall.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/endpoint.h> 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include "tcp_type.h" 41 41 -
uspace/srv/net/udp/assoc.h
re48947e r8d2dd7f2 38 38 #include <inet/endpoint.h> 39 39 #include <ipc/loc.h> 40 #include <sys/types.h>41 40 #include "udp_type.h" 42 41 -
uspace/srv/net/udp/pdu.h
re48947e r8d2dd7f2 37 37 38 38 #include <inet/endpoint.h> 39 #include <sys/types.h>40 39 #include "std.h" 41 40 #include "udp_type.h" -
uspace/srv/net/udp/std.h
re48947e r8d2dd7f2 38 38 #define STD_H 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #define IP_PROTO_UDP 17 -
uspace/srv/net/udp/udp_type.h
re48947e r8d2dd7f2 41 41 #include <inet/endpoint.h> 42 42 #include <ipc/loc.h> 43 #include <s ys/types.h>43 #include <stddef.h> 44 44 #include <inet/addr.h> 45 45
Note:
See TracChangeset
for help on using the changeset viewer.