simh-testsetgenerator/slirp
2021-12-10 18:17:18 -08:00
..
arp_table.c
bootp.c ETHER: Fix NAT dhcp behavior to properly respond to the MAC of the requestor 2021-12-10 18:17:18 -08:00
bootp.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
cksum.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
COPYRIGHT
debug.h
dnssearch.c
if.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
if.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
ip.h SCP: Add macro's to support packed structures for network traffic 2020-03-10 11:26:23 -07:00
ip_icmp.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
ip_icmp.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
ip_input.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
ip_output.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
libslirp.h
main.h
Makefile.objs
mbuf.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
mbuf.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
misc.c SLIRP: Fix Coverity complaints 2019-04-11 21:37:59 -07:00
misc.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
README
sbuf.c SLIRP: Fix Coverity complaints 2019-04-11 21:37:59 -07:00
sbuf.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
slirp.c SLIRP: Fix Coverity complaints 2019-04-11 21:37:59 -07:00
slirp.h
slirp_config.h
socket.c slirp: Make sure to completely initialize the iov on a 0 buffer size return 2021-08-17 15:21:09 -07:00
socket.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcp.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcp_input.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcp_output.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcp_subr.c SLIRP: Fix Coverity complaints 2019-04-11 21:37:59 -07:00
tcp_timer.c slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcp_timer.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcp_var.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tcpip.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
tftp.c SLIRP: Fix Coverity complaints 2019-04-11 21:37:59 -07:00
tftp.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00
udp.c SLIRP: Fix Coverity complaints 2019-04-11 21:37:59 -07:00
udp.h slirp: change tabs to spaces 2018-05-08 13:04:39 -07:00

October 6, 2015 

This version of slirp is a fork from QEMU Version 2.4.0.1 slirp implementation
Taken from commit 83c92b45140be773f0c5545dddea35a89db1ad03 
in the qemu repository git://git.qemu.orgu/qemu.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_glue directory so that things are stubbed out locally and the minimal 
capabilities needed for sim_ether integration are provided.

Thanks to Fabrice Bellard.