aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2019-02-12 17:25:21 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2019-03-07 12:46:31 +0100
commit657aab83d99a6e116a13e1c586acc3b7320ecde3 (patch)
tree2ceec478104c97b9270e03280c9691610aa47884
parente64cae22042c39bfd06efed9178b25d20d074ea3 (diff)
downloadslirp-657aab83d99a6e116a13e1c586acc3b7320ecde3.zip
slirp-657aab83d99a6e116a13e1c586acc3b7320ecde3.tar.gz
slirp-657aab83d99a6e116a13e1c586acc3b7320ecde3.tar.bz2
slirp: move sources to src/ subdirectory
Prepare for making slirp/ a standalone project. Remove some useless includes while at it. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20190212162524.31504-5-marcandre.lureau@redhat.com> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
-rw-r--r--Makefile.objs60
-rw-r--r--src/arp_table.c (renamed from arp_table.c)0
-rw-r--r--src/bootp.c (renamed from bootp.c)0
-rw-r--r--src/bootp.h (renamed from bootp.h)0
-rw-r--r--src/cksum.c (renamed from cksum.c)0
-rw-r--r--src/debug.h (renamed from debug.h)0
-rw-r--r--src/dhcpv6.c (renamed from dhcpv6.c)0
-rw-r--r--src/dhcpv6.h (renamed from dhcpv6.h)0
-rw-r--r--src/dnssearch.c (renamed from dnssearch.c)0
-rw-r--r--src/if.c (renamed from if.c)0
-rw-r--r--src/if.h (renamed from if.h)0
-rw-r--r--src/ip.h (renamed from ip.h)0
-rw-r--r--src/ip6.h (renamed from ip6.h)0
-rw-r--r--src/ip6_icmp.c (renamed from ip6_icmp.c)0
-rw-r--r--src/ip6_icmp.h (renamed from ip6_icmp.h)0
-rw-r--r--src/ip6_input.c (renamed from ip6_input.c)0
-rw-r--r--src/ip6_output.c (renamed from ip6_output.c)0
-rw-r--r--src/ip_icmp.c (renamed from ip_icmp.c)0
-rw-r--r--src/ip_icmp.h (renamed from ip_icmp.h)0
-rw-r--r--src/ip_input.c (renamed from ip_input.c)0
-rw-r--r--src/ip_output.c (renamed from ip_output.c)0
-rw-r--r--src/libslirp.h (renamed from libslirp.h)0
-rw-r--r--src/main.h (renamed from main.h)0
-rw-r--r--src/mbuf.c (renamed from mbuf.c)0
-rw-r--r--src/mbuf.h (renamed from mbuf.h)0
-rw-r--r--src/misc.c (renamed from misc.c)0
-rw-r--r--src/misc.h (renamed from misc.h)0
-rw-r--r--src/ncsi-pkt.h (renamed from ncsi-pkt.h)0
-rw-r--r--src/ncsi.c (renamed from ncsi.c)0
-rw-r--r--src/ndp_table.c (renamed from ndp_table.c)0
-rw-r--r--src/qtailq.h (renamed from qtailq.h)0
-rw-r--r--src/sbuf.c (renamed from sbuf.c)0
-rw-r--r--src/sbuf.h (renamed from sbuf.h)0
-rw-r--r--src/slirp.c (renamed from slirp.c)0
-rw-r--r--src/slirp.h (renamed from slirp.h)0
-rw-r--r--src/socket.c (renamed from socket.c)0
-rw-r--r--src/socket.h (renamed from socket.h)0
-rw-r--r--src/state.c (renamed from state.c)0
-rw-r--r--src/state.h (renamed from state.h)0
-rw-r--r--src/stream.c (renamed from stream.c)0
-rw-r--r--src/stream.h (renamed from stream.h)0
-rw-r--r--src/tcp.h (renamed from tcp.h)0
-rw-r--r--src/tcp_input.c (renamed from tcp_input.c)0
-rw-r--r--src/tcp_output.c (renamed from tcp_output.c)0
-rw-r--r--src/tcp_subr.c (renamed from tcp_subr.c)0
-rw-r--r--src/tcp_timer.c (renamed from tcp_timer.c)0
-rw-r--r--src/tcp_timer.h (renamed from tcp_timer.h)0
-rw-r--r--src/tcp_var.h (renamed from tcp_var.h)0
-rw-r--r--src/tcpip.h (renamed from tcpip.h)0
-rw-r--r--src/tftp.c (renamed from tftp.c)0
-rw-r--r--src/tftp.h (renamed from tftp.h)0
-rw-r--r--src/udp.c (renamed from udp.c)0
-rw-r--r--src/udp.h (renamed from udp.h)0
-rw-r--r--src/udp6.c (renamed from udp6.c)0
-rw-r--r--src/util.c (renamed from util.c)0
-rw-r--r--src/util.h (renamed from util.h)0
-rw-r--r--src/vmstate.c (renamed from vmstate.c)0
-rw-r--r--src/vmstate.h (renamed from vmstate.h)0
58 files changed, 30 insertions, 30 deletions
diff --git a/Makefile.objs b/Makefile.objs
index e91daf0..0250229 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -1,36 +1,36 @@
slirp-obj-y = slirp.mo
slirp.mo-objs = \
- arp_table.o \
- bootp.o \
- cksum.o \
- dhcpv6.o \
- dnssearch.o \
- if.o \
- ip6_icmp.o \
- ip6_input.o \
- ip6_output.o \
- ip_icmp.o \
- ip_input.o \
- ip_output.o \
- mbuf.o \
- misc.o \
- ncsi.o \
- ndp_table.o \
- sbuf.o \
- slirp.o \
- socket.o \
- state.o \
- stream.o \
- tcp_input.o \
- tcp_output.o \
- tcp_subr.o \
- tcp_timer.o \
- tftp.o \
- udp.o \
- udp6.o \
- util.o \
- vmstate.o \
+ src/arp_table.o \
+ src/bootp.o \
+ src/cksum.o \
+ src/dhcpv6.o \
+ src/dnssearch.o \
+ src/if.o \
+ src/ip6_icmp.o \
+ src/ip6_input.o \
+ src/ip6_output.o \
+ src/ip_icmp.o \
+ src/ip_input.o \
+ src/ip_output.o \
+ src/mbuf.o \
+ src/misc.o \
+ src/ncsi.o \
+ src/ndp_table.o \
+ src/sbuf.o \
+ src/slirp.o \
+ src/socket.o \
+ src/state.o \
+ src/stream.o \
+ src/tcp_input.o \
+ src/tcp_output.o \
+ src/tcp_subr.o \
+ src/tcp_timer.o \
+ src/tftp.o \
+ src/udp.o \
+ src/udp6.o \
+ src/util.o \
+ src/vmstate.o \
$(NULL)
slirp.mo-cflags = -DG_LOG_DOMAIN=\"Slirp\"
diff --git a/arp_table.c b/src/arp_table.c
index 543e298..543e298 100644
--- a/arp_table.c
+++ b/src/arp_table.c
diff --git a/bootp.c b/src/bootp.c
index 4eda3ce..4eda3ce 100644
--- a/bootp.c
+++ b/src/bootp.c
diff --git a/bootp.h b/src/bootp.h
index f079ed5..f079ed5 100644
--- a/bootp.h
+++ b/src/bootp.h
diff --git a/cksum.c b/src/cksum.c
index a079036..a079036 100644
--- a/cksum.c
+++ b/src/cksum.c
diff --git a/debug.h b/src/debug.h
index a6e912a..a6e912a 100644
--- a/debug.h
+++ b/src/debug.h
diff --git a/dhcpv6.c b/src/dhcpv6.c
index 4a52ef0..4a52ef0 100644
--- a/dhcpv6.c
+++ b/src/dhcpv6.c
diff --git a/dhcpv6.h b/src/dhcpv6.h
index 6c0ede3..6c0ede3 100644
--- a/dhcpv6.h
+++ b/src/dhcpv6.h
diff --git a/dnssearch.c b/src/dnssearch.c
index b4cbca9..b4cbca9 100644
--- a/dnssearch.c
+++ b/src/dnssearch.c
diff --git a/if.c b/src/if.c
index 5de7796..5de7796 100644
--- a/if.c
+++ b/src/if.c
diff --git a/if.h b/src/if.h
index 311d24e..311d24e 100644
--- a/if.h
+++ b/src/if.h
diff --git a/ip.h b/src/ip.h
index bef6918..bef6918 100644
--- a/ip.h
+++ b/src/ip.h
diff --git a/ip6.h b/src/ip6.h
index e0f66c7..e0f66c7 100644
--- a/ip6.h
+++ b/src/ip6.h
diff --git a/ip6_icmp.c b/src/ip6_icmp.c
index 417f927..417f927 100644
--- a/ip6_icmp.c
+++ b/src/ip6_icmp.c
diff --git a/ip6_icmp.h b/src/ip6_icmp.h
index b4d2b71..b4d2b71 100644
--- a/ip6_icmp.h
+++ b/src/ip6_icmp.h
diff --git a/ip6_input.c b/src/ip6_input.c
index 1b8c003..1b8c003 100644
--- a/ip6_input.c
+++ b/src/ip6_input.c
diff --git a/ip6_output.c b/src/ip6_output.c
index 19d1ae7..19d1ae7 100644
--- a/ip6_output.c
+++ b/src/ip6_output.c
diff --git a/ip_icmp.c b/src/ip_icmp.c
index ae1cc0b..ae1cc0b 100644
--- a/ip_icmp.c
+++ b/src/ip_icmp.c
diff --git a/ip_icmp.h b/src/ip_icmp.h
index dcd6f96..dcd6f96 100644
--- a/ip_icmp.h
+++ b/src/ip_icmp.h
diff --git a/ip_input.c b/src/ip_input.c
index a9b2f8d..a9b2f8d 100644
--- a/ip_input.c
+++ b/src/ip_input.c
diff --git a/ip_output.c b/src/ip_output.c
index 748cca2..748cca2 100644
--- a/ip_output.c
+++ b/src/ip_output.c
diff --git a/libslirp.h b/src/libslirp.h
index 9e188b9..9e188b9 100644
--- a/libslirp.h
+++ b/src/libslirp.h
diff --git a/main.h b/src/main.h
index f11d457..f11d457 100644
--- a/main.h
+++ b/src/main.h
diff --git a/mbuf.c b/src/mbuf.c
index b120c66..b120c66 100644
--- a/mbuf.c
+++ b/src/mbuf.c
diff --git a/mbuf.h b/src/mbuf.h
index 7137c14..7137c14 100644
--- a/mbuf.h
+++ b/src/mbuf.h
diff --git a/misc.c b/src/misc.c
index 8d7f648..8d7f648 100644
--- a/misc.c
+++ b/src/misc.c
diff --git a/misc.h b/src/misc.h
index 448fd40..448fd40 100644
--- a/misc.h
+++ b/src/misc.h
diff --git a/ncsi-pkt.h b/src/ncsi-pkt.h
index 02e6686..02e6686 100644
--- a/ncsi-pkt.h
+++ b/src/ncsi-pkt.h
diff --git a/ncsi.c b/src/ncsi.c
index 1be24cb..1be24cb 100644
--- a/ncsi.c
+++ b/src/ncsi.c
diff --git a/ndp_table.c b/src/ndp_table.c
index e852fae..e852fae 100644
--- a/ndp_table.c
+++ b/src/ndp_table.c
diff --git a/qtailq.h b/src/qtailq.h
index 353f285..353f285 100644
--- a/qtailq.h
+++ b/src/qtailq.h
diff --git a/sbuf.c b/src/sbuf.c
index b2ab3a9..b2ab3a9 100644
--- a/sbuf.c
+++ b/src/sbuf.c
diff --git a/sbuf.h b/src/sbuf.h
index 77808b1..77808b1 100644
--- a/sbuf.h
+++ b/src/sbuf.h
diff --git a/slirp.c b/src/slirp.c
index f36b781..f36b781 100644
--- a/slirp.c
+++ b/src/slirp.c
diff --git a/slirp.h b/src/slirp.h
index 0f7de96..0f7de96 100644
--- a/slirp.h
+++ b/src/slirp.h
diff --git a/socket.c b/src/socket.c
index 115d6e3..115d6e3 100644
--- a/socket.c
+++ b/src/socket.c
diff --git a/socket.h b/src/socket.h
index bd5feb6..bd5feb6 100644
--- a/socket.h
+++ b/src/socket.h
diff --git a/state.c b/src/state.c
index ac0a7d4..ac0a7d4 100644
--- a/state.c
+++ b/src/state.c
diff --git a/state.h b/src/state.h
index e69de29..e69de29 100644
--- a/state.h
+++ b/src/state.h
diff --git a/stream.c b/src/stream.c
index 7c8df59..7c8df59 100644
--- a/stream.c
+++ b/src/stream.c
diff --git a/stream.h b/src/stream.h
index 985334c..985334c 100644
--- a/stream.h
+++ b/src/stream.h
diff --git a/tcp.h b/src/tcp.h
index 2b98b8c..2b98b8c 100644
--- a/tcp.h
+++ b/src/tcp.h
diff --git a/tcp_input.c b/src/tcp_input.c
index 3651e3a..3651e3a 100644
--- a/tcp_input.c
+++ b/src/tcp_input.c
diff --git a/tcp_output.c b/src/tcp_output.c
index 37c82f3..37c82f3 100644
--- a/tcp_output.c
+++ b/src/tcp_output.c
diff --git a/tcp_subr.c b/src/tcp_subr.c
index 21b4295..21b4295 100644
--- a/tcp_subr.c
+++ b/src/tcp_subr.c
diff --git a/tcp_timer.c b/src/tcp_timer.c
index f048d64..f048d64 100644
--- a/tcp_timer.c
+++ b/src/tcp_timer.c
diff --git a/tcp_timer.h b/src/tcp_timer.h
index 8a5e4f8..8a5e4f8 100644
--- a/tcp_timer.h
+++ b/src/tcp_timer.h
diff --git a/tcp_var.h b/src/tcp_var.h
index 357abe8..357abe8 100644
--- a/tcp_var.h
+++ b/src/tcp_var.h
diff --git a/tcpip.h b/src/tcpip.h
index 2e1958b..2e1958b 100644
--- a/tcpip.h
+++ b/src/tcpip.h
diff --git a/tftp.c b/src/tftp.c
index 1b7c973..1b7c973 100644
--- a/tftp.c
+++ b/src/tftp.c
diff --git a/tftp.h b/src/tftp.h
index dcb1048..dcb1048 100644
--- a/tftp.h
+++ b/src/tftp.h
diff --git a/udp.c b/src/udp.c
index ae2352b..ae2352b 100644
--- a/udp.c
+++ b/src/udp.c
diff --git a/udp.h b/src/udp.h
index 95b4f2a..95b4f2a 100644
--- a/udp.h
+++ b/src/udp.h
diff --git a/udp6.c b/src/udp6.c
index deffb48..deffb48 100644
--- a/udp6.c
+++ b/src/udp6.c
diff --git a/util.c b/src/util.c
index 97148f5..97148f5 100644
--- a/util.c
+++ b/src/util.c
diff --git a/util.h b/src/util.h
index 0686d48..0686d48 100644
--- a/util.h
+++ b/src/util.h
diff --git a/vmstate.c b/src/vmstate.c
index e417d2f..e417d2f 100644
--- a/vmstate.c
+++ b/src/vmstate.c
diff --git a/vmstate.h b/src/vmstate.h
index e28f81a..e28f81a 100644
--- a/vmstate.h
+++ b/src/vmstate.h