Changeset 8d2dd7f2 in mainline for uspace/srv/net/inetsrv
- Timestamp:
- 2017-05-13T19:03:14Z (9 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/inetsrv
- Files:
-
- 13 edited
-
addrobj.h (modified) (1 diff)
-
icmp_std.h (modified) (1 diff)
-
icmpv6_std.h (modified) (1 diff)
-
inet_link.h (modified) (1 diff)
-
inet_std.h (modified) (1 diff)
-
inetcfg.c (modified) (1 diff)
-
inetping.c (modified) (1 diff)
-
inetsrv.c (modified) (1 diff)
-
inetsrv.h (modified) (1 diff)
-
ndp.h (modified) (1 diff)
-
pdu.h (modified) (1 diff)
-
reass.h (modified) (1 diff)
-
sroute.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.
