Changeset ec7902d in mainline for uspace/lib
- Timestamp:
- 2021-05-05T22:17:01Z (5 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fe333f8e
- Parents:
- 923bb331
- Location:
- uspace/lib
- Files:
-
- 2 added
- 5 edited
- 39 moved
-
c/meson.build (modified) (3 diffs)
-
drv/meson.build (modified) (1 diff)
-
http/meson.build (modified) (2 diffs)
-
inet/doc/doxygroups.h (added)
-
inet/include/inet/addr.h (moved) (moved from uspace/lib/c/include/inet/addr.h )
-
inet/include/inet/dhcp.h (moved) (moved from uspace/lib/c/include/inet/dhcp.h )
-
inet/include/inet/dnsr.h (moved) (moved from uspace/lib/c/include/inet/dnsr.h )
-
inet/include/inet/endpoint.h (moved) (moved from uspace/lib/c/include/inet/endpoint.h )
-
inet/include/inet/host.h (moved) (moved from uspace/lib/c/include/inet/host.h )
-
inet/include/inet/hostname.h (moved) (moved from uspace/lib/c/include/inet/hostname.h )
-
inet/include/inet/hostport.h (moved) (moved from uspace/lib/c/include/inet/hostport.h )
-
inet/include/inet/inet.h (moved) (moved from uspace/lib/c/include/inet/inet.h )
-
inet/include/inet/inetcfg.h (moved) (moved from uspace/lib/c/include/inet/inetcfg.h )
-
inet/include/inet/inetping.h (moved) (moved from uspace/lib/c/include/inet/inetping.h )
-
inet/include/inet/iplink.h (moved) (moved from uspace/lib/c/include/inet/iplink.h )
-
inet/include/inet/iplink_srv.h (moved) (moved from uspace/lib/c/include/inet/iplink_srv.h )
-
inet/include/inet/tcp.h (moved) (moved from uspace/lib/c/include/inet/tcp.h )
-
inet/include/inet/udp.h (moved) (moved from uspace/lib/c/include/inet/udp.h )
-
inet/include/ipc/dhcp.h (moved) (moved from uspace/lib/c/include/ipc/dhcp.h )
-
inet/include/ipc/dnsr.h (moved) (moved from uspace/lib/c/include/ipc/dnsr.h )
-
inet/include/ipc/inet.h (moved) (moved from uspace/lib/c/include/ipc/inet.h )
-
inet/include/ipc/iplink.h (moved) (moved from uspace/lib/c/include/ipc/iplink.h )
-
inet/include/ipc/tcp.h (moved) (moved from uspace/lib/c/include/ipc/tcp.h )
-
inet/include/ipc/udp.h (moved) (moved from uspace/lib/c/include/ipc/udp.h )
-
inet/include/types/inet.h (moved) (moved from uspace/lib/c/include/types/inet.h )
-
inet/include/types/inet/host.h (moved) (moved from uspace/lib/c/include/types/inet/host.h )
-
inet/include/types/inet/hostport.h (moved) (moved from uspace/lib/c/include/types/inet/hostport.h )
-
inet/include/types/inetcfg.h (moved) (moved from uspace/lib/c/include/types/inetcfg.h )
-
inet/include/types/inetping.h (moved) (moved from uspace/lib/c/include/types/inetping.h )
-
inet/meson.build (added)
-
inet/src/addr.c (moved) (moved from uspace/lib/c/generic/inet/addr.c )
-
inet/src/dhcp.c (moved) (moved from uspace/lib/c/generic/dhcp.c )
-
inet/src/dnsr.c (moved) (moved from uspace/lib/c/generic/dnsr.c )
-
inet/src/endpoint.c (moved) (moved from uspace/lib/c/generic/inet/endpoint.c )
-
inet/src/host.c (moved) (moved from uspace/lib/c/generic/inet/host.c )
-
inet/src/hostname.c (moved) (moved from uspace/lib/c/generic/inet/hostname.c )
-
inet/src/hostport.c (moved) (moved from uspace/lib/c/generic/inet/hostport.c )
-
inet/src/inet.c (moved) (moved from uspace/lib/c/generic/inet.c )
-
inet/src/inetcfg.c (moved) (moved from uspace/lib/c/generic/inetcfg.c )
-
inet/src/inetping.c (moved) (moved from uspace/lib/c/generic/inetping.c )
-
inet/src/iplink.c (moved) (moved from uspace/lib/c/generic/iplink.c )
-
inet/src/iplink_srv.c (moved) (moved from uspace/lib/c/generic/iplink_srv.c )
-
inet/src/tcp.c (moved) (moved from uspace/lib/c/generic/inet/tcp.c )
-
inet/src/udp.c (moved) (moved from uspace/lib/c/generic/inet/udp.c )
-
meson.build (modified) (1 diff)
-
nettl/meson.build (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/meson.build
r923bb331 rec7902d 78 78 'generic/device/led_dev.c', 79 79 'generic/dirent.c', 80 'generic/dhcp.c',81 'generic/dnsr.c',82 80 'generic/dlfcn.c', 83 81 'generic/elf/elf.c', … … 100 98 'generic/task.c', 101 99 'generic/imath.c', 102 'generic/inet/addr.c',103 'generic/inet/endpoint.c',104 'generic/inet/host.c',105 'generic/inet/hostname.c',106 'generic/inet/hostport.c',107 'generic/inet/tcp.c',108 'generic/inet/udp.c',109 'generic/inet.c',110 'generic/inetcfg.c',111 'generic/inetping.c',112 100 'generic/io/asprintf.c', 113 101 'generic/io/input.c', … … 131 119 'generic/io/console.c', 132 120 'generic/io/table.c', 133 'generic/iplink.c',134 'generic/iplink_srv.c',135 121 'generic/irc.c', 136 122 'generic/irq.c', -
uspace/lib/drv/meson.build
r923bb331 rec7902d 28 28 # 29 29 30 deps = [ ' pcm' ]30 deps = [ 'inet', 'pcm' ] 31 31 private_includes += include_directories('generic/private') 32 32 src = files( -
uspace/lib/http/meson.build
r923bb331 rec7902d 1 1 # 2 # Copyright (c) 2021 Jiri Svoboda 2 3 # Copyright (c) 2013 Martin Sucha 3 4 # All rights reserved. … … 27 28 # 28 29 30 deps = [ 'inet' ] 29 31 src = files( 30 32 'src/http.c', -
uspace/lib/meson.build
r923bb331 rec7902d 50 50 libs = [ 51 51 'c', 52 53 'inet', 52 54 53 55 'block', -
uspace/lib/nettl/meson.build
r923bb331 rec7902d 1 1 # 2 # Copyright (c) 20 15Jiri Svoboda2 # Copyright (c) 2021 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ 'inet' ] 29 30 src = files( 30 31 'src/amap.c',
Note:
See TracChangeset
for help on using the changeset viewer.
