simh-testsetgenerator/slirp
2015-10-16 11:38:27 -07:00
..
simh slirp, Visual Studio Projects: Adjust includes to allow building with Visual Studio Community 2015-10-16 11:37:30 -07:00
arp_table.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
bootp.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
bootp.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
cksum.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
COPYRIGHT slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
debug.h slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
dnssearch.c slirp: Compiler suggested cleanups 2015-10-16 11:38:27 -07:00
if.c slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
if.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
ip.h slirp: Port base QEMU slirp code to build on Windows with Visual Studio 2015-10-15 14:17:42 -07:00
ip_icmp.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
ip_icmp.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
ip_input.c slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
ip_output.c slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
libslirp.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
main.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
Makefile.objs slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
mbuf.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
mbuf.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
misc.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
misc.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
README slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
sbuf.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
sbuf.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
slirp.c slirp: Compiler suggested cleanups 2015-10-16 11:38:27 -07:00
slirp.h slirp, Visual Studio Projects: Adjust includes to allow building with Visual Studio Community 2015-10-16 11:37:30 -07:00
slirp_config.h slirp, Visual Studio Projects: Adjust includes to allow building with Visual Studio Community 2015-10-16 11:37:30 -07:00
socket.c slirp: Compiler suggested cleanups 2015-10-16 11:38:27 -07:00
socket.h slirp: Compiler suggested cleanups 2015-10-16 11:38:27 -07:00
tcp.h slirp: Compiler suggested cleanups 2015-10-16 11:38:27 -07:00
tcp_input.c slirp: Compiler suggested cleanups 2015-10-16 11:38:27 -07:00
tcp_output.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
tcp_subr.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
tcp_timer.c slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
tcp_timer.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
tcp_var.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
tcpip.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00
tftp.c slirp: avoid compiler warnings for tftp when building with Visual Studio 2015-10-15 16:04:33 -07:00
tftp.h slirp: avoid compiler warnings for tftp when building with Visual Studio 2015-10-15 16:04:33 -07:00
udp.c slirp: Integrate debugging support with simh debug output. 2015-10-16 03:43:27 -07:00
udp.h slirp: Initial import of QEMU slirp 2015-10-15 12:29:41 -07:00

October 6, 2015 

This version of slirp is a fork from QEMU Version 2.4.0.1 slirp implementation
Taken from commit 474590efc51f262fb5d81ca417d510cb7fb7a914 
in the qemu repository git://repo.or.cz/qemu/ar7.git

The goal being to absolutely mininize changes from the base qemu provided code 
so that the more active changes being done by the qemu folks can easily be 
adopted in the future by directly replacing the revised modules.  This is 
achieved by careful manipulation of the include files provided in the 
slirp/qemu directory so that things are stubbed out locally and the minimal 
capabilities needed for sim_ether integration are provided.

Thanks to Fabrice Bellard.