search for: tcp_databuf

Displaying 1 result from an estimated 1 matches for "tcp_databuf".

2017 Nov 21
2
[PATCH] EFI TCP buffer reuse bug
...++ jw/core/fs/pxe/pxe.h 2017-07-23 19:44:46.466498950 -0500 @@ -144,6 +144,7 @@ struct pxe_pvt_inode { uint8_t tftp_goteof; /* 1 if the EOF packet received */ uint8_t tftp_unused[3]; /* Currently unused */ char *tftp_pktbuf; /* Packet buffer */ + char tcp_databuf[8192]; /* data buffer */ struct inode *ctl; /* Control connection (for FTP) */ const struct pxe_conn_ops *ops; }; --- master/efi/tcp.c 2017-07-22 14:45:46.628674366 -0500 +++ jw/efi/tcp.c 2017-07-24 09:24:37.072922478 -0500 @@ -199,8 +199,6 @@ void core_tcp_close_file(struct...