Re: [Qemu-devel] [PATCH v2] slirp: Add IPv6 support to the TFTP code

2016-02-17 Thread Samuel Thibault
Thomas Huth, on Wed 17 Feb 2016 09:40:10 +0100, wrote: > Add the handler code for incoming TFTP packets to udp6_input(), > and make sure that the TFTP code can send packets with both, > udp_output() and udp6_output() by introducing a wrapper function > called tftp_udp_output(). > > Signed-off-by:

[Qemu-devel] [PATCH v2] slirp: Add IPv6 support to the TFTP code

2016-02-17 Thread Thomas Huth
Add the handler code for incoming TFTP packets to udp6_input(), and make sure that the TFTP code can send packets with both, udp_output() and udp6_output() by introducing a wrapper function called tftp_udp_output(). Signed-off-by: Thomas Huth --- v2: Changes according to the review of Samuel Thi