mirror of https://github.com/ipxe/ipxe.git
Bug fixes to the HTTP protocol code
parent
0f88703019
commit
562ab6d65c
|
@ -71,7 +71,7 @@ static void http_connected ( struct tcp_connection *conn ) {
|
||||||
* @v conn a TCP Connection
|
* @v conn a TCP Connection
|
||||||
* @v len the length of data acked
|
* @v len the length of data acked
|
||||||
*/
|
*/
|
||||||
static void http_acked ( struct tcp_connection *conn, size_t len ) {
|
static void http_acked ( struct tcp_connection *conn, size_t len __attribute__ ((unused)) ) {
|
||||||
struct http_request *http = tcp_to_http ( conn );
|
struct http_request *http = tcp_to_http ( conn );
|
||||||
|
|
||||||
// assume that the whole GET request was sent in on epacket
|
// assume that the whole GET request was sent in on epacket
|
||||||
|
|
Loading…
Reference in New Issue