diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-09-07 13:01:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-09-07 13:01:43 +0200 |
commit | 4344fa926ae07bdd9530370b213505c894d10abb (patch) | |
tree | b292bb45d6c67a246178516550a63dd3044b62d0 /lib/urldata.h | |
parent | 61672bde441cf67c1250a9a66f902700d9d95ed4 (diff) |
http2: actually init nghttp2 and send HTTP2-Settings properly
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 7d850e1e4..ebaaf6ff4 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1001,13 +1001,14 @@ struct connectdata { union { struct ftp_conn ftpc; + struct http_conn httpc; struct ssh_conn sshc; struct tftp_state_data *tftpc; struct imap_conn imapc; struct pop3_conn pop3c; struct smtp_conn smtpc; struct rtsp_conn rtspc; - void *generic; + void *generic; /* RTMP and LDAP use this */ } proto; int cselect_bits; /* bitmask of socket events */ |