summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/http.h
diff options
context:
space:
mode:
authorMichael Brown2006-12-28 00:09:46 +0100
committerMichael Brown2006-12-28 00:09:46 +0100
commit61ed298bc7dc60c84fea456444e853a73de0c901 (patch)
tree99978dfeb667df0f79356cc4132f99922e2fd803 /src/include/gpxe/http.h
parentKeep running the main processing loop while waiting for input. (diff)
downloadipxe-61ed298bc7dc60c84fea456444e853a73de0c901.tar.gz
ipxe-61ed298bc7dc60c84fea456444e853a73de0c901.tar.xz
ipxe-61ed298bc7dc60c84fea456444e853a73de0c901.zip
Merge changes from mcb-tcp-fixes branch.
Diffstat (limited to 'src/include/gpxe/http.h')
-rw-r--r--src/include/gpxe/http.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/gpxe/http.h b/src/include/gpxe/http.h
index 02c9be410..f858c5ffb 100644
--- a/src/include/gpxe/http.h
+++ b/src/include/gpxe/http.h
@@ -29,8 +29,10 @@ enum http_state {
struct http_request;
struct http_request {
- /** TCP connection for this request */
- struct tcp_connection tcp;
+ /** Server address */
+ struct sockaddr_tcpip server;
+ /** TCP application for this request */
+ struct tcp_application tcp;
/** Current state */
enum http_state state;
/** File to download */