http2: rely on content-encoding header
[platform/upstream/curl.git] / lib / http2.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22
23 #include "curl_setup.h"
24
25 #ifdef USE_NGHTTP2
26 #define _MPRINTF_REPLACE
27 #include <curl/mprintf.h>
28
29 #include <nghttp2/nghttp2.h>
30 #include "urldata.h"
31 #include "http2.h"
32 #include "http.h"
33 #include "sendf.h"
34 #include "curl_base64.h"
35 #include "curl_memory.h"
36 #include "rawstr.h"
37
38 /* include memdebug.h last */
39 #include "memdebug.h"
40
41 #if (NGHTTP2_VERSION_NUM < 0x000300)
42 #error too old nghttp2 version, upgrade!
43 #endif
44
45 /*
46  * HTTP2 handler interface. This isn't added to the general list of protocols
47  * but will be used at run-time when the protocol is dynamically switched from
48  * HTTP to HTTP2.
49  */
50 const struct Curl_handler Curl_handler_http2 = {
51   "HTTP2",                              /* scheme */
52   ZERO_NULL,                            /* setup_connection */
53   ZERO_NULL,                            /* do_it */
54   ZERO_NULL     ,                       /* done */
55   ZERO_NULL,                            /* do_more */
56   ZERO_NULL,                            /* connect_it */
57   ZERO_NULL,                            /* connecting */
58   ZERO_NULL,                            /* doing */
59   ZERO_NULL,                            /* proto_getsock */
60   ZERO_NULL,                            /* doing_getsock */
61   ZERO_NULL,                            /* domore_getsock */
62   ZERO_NULL,                            /* perform_getsock */
63   ZERO_NULL,                            /* disconnect */
64   ZERO_NULL,                            /* readwrite */
65   PORT_HTTP,                            /* defport */
66   CURLPROTO_HTTP,                       /* protocol */
67   PROTOPT_NONE                          /* flags */
68 };
69
70
71 /*
72  * Store nghttp2 version info in this buffer, Prefix with a space.  Return
73  * total length written.
74  */
75 int Curl_http2_ver(char *p, size_t len)
76 {
77   nghttp2_info *h2 = nghttp2_version(0);
78   return snprintf(p, len, " nghttp2/%s", h2->version_str);
79 }
80
81 /*
82  * The implementation of nghttp2_send_callback type. Here we write |data| with
83  * size |length| to the network and return the number of bytes actually
84  * written. See the documentation of nghttp2_send_callback for the details.
85  */
86 static ssize_t send_callback(nghttp2_session *h2,
87                              const uint8_t *data, size_t length, int flags,
88                              void *userp)
89 {
90   struct connectdata *conn = (struct connectdata *)userp;
91   struct http_conn *httpc = &conn->proto.httpc;
92   ssize_t written;
93   CURLcode rc;
94   (void)h2;
95   (void)flags;
96
97   rc = 0;
98   written = ((Curl_send*)httpc->send_underlying)(conn, FIRSTSOCKET,
99                                                  data, length, &rc);
100
101   if(rc == CURLE_AGAIN) {
102     return NGHTTP2_ERR_WOULDBLOCK;
103   }
104
105   if(written == -1) {
106     failf(conn->data, "Failed sending HTTP2 data");
107     return NGHTTP2_ERR_CALLBACK_FAILURE;
108   }
109
110   if(!written)
111     return NGHTTP2_ERR_WOULDBLOCK;
112
113   return written;
114 }
115
116 static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
117                          void *userp)
118 {
119   struct connectdata *conn = (struct connectdata *)userp;
120   struct http_conn *c = &conn->proto.httpc;
121   int rv;
122   (void)session;
123   (void)frame;
124   infof(conn->data, "on_frame_recv() was called with header %x\n",
125         frame->hd.type);
126   switch(frame->hd.type) {
127   case NGHTTP2_HEADERS:
128     if(frame->headers.cat != NGHTTP2_HCAT_RESPONSE)
129       break;
130     c->bodystarted = TRUE;
131     Curl_add_buffer(c->header_recvbuf, "\r\n", 2);
132     c->nread_header_recvbuf = c->len < c->header_recvbuf->size_used ?
133       c->len : c->header_recvbuf->size_used;
134
135     memcpy(c->mem, c->header_recvbuf->buffer, c->nread_header_recvbuf);
136
137     c->mem += c->nread_header_recvbuf;
138     c->len -= c->nread_header_recvbuf;
139     break;
140   case NGHTTP2_PUSH_PROMISE:
141     rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
142                                    frame->hd.stream_id, NGHTTP2_CANCEL);
143     if(nghttp2_is_fatal(rv)) {
144       return rv;
145     }
146     break;
147   }
148   return 0;
149 }
150
151 static int on_invalid_frame_recv(nghttp2_session *session,
152                                  const nghttp2_frame *frame,
153                                  nghttp2_error_code error_code, void *userp)
154 {
155   struct connectdata *conn = (struct connectdata *)userp;
156   (void)session;
157   (void)frame;
158   infof(conn->data, "on_invalid_frame_recv() was called, error_code = %d\n",
159         error_code);
160   return 0;
161 }
162
163 static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
164                               int32_t stream_id,
165                               const uint8_t *data, size_t len, void *userp)
166 {
167   struct connectdata *conn = (struct connectdata *)userp;
168   struct http_conn *c = &conn->proto.httpc;
169   size_t nread;
170   (void)session;
171   (void)flags;
172   (void)data;
173   infof(conn->data, "on_data_chunk_recv() "
174         "len = %u, stream = %x\n", len, stream_id);
175
176   if(stream_id != c->stream_id) {
177     return 0;
178   }
179
180   nread = c->len < len ? c->len : len;
181   memcpy(c->mem, data, nread);
182
183   c->mem += nread;
184   c->len -= nread;
185
186   infof(conn->data, "%zu data written\n", nread);
187
188   if(nread < len) {
189     c->data = data + nread;
190     c->datalen = len - nread;
191     return NGHTTP2_ERR_PAUSE;
192   }
193   return 0;
194 }
195
196 static int before_frame_send(nghttp2_session *session,
197                              const nghttp2_frame *frame,
198                              void *userp)
199 {
200   struct connectdata *conn = (struct connectdata *)userp;
201   struct http_conn *c = &conn->proto.httpc;
202   (void)session;
203   (void)frame;
204   infof(conn->data, "before_frame_send() was called\n");
205   if(frame->hd.type == NGHTTP2_HEADERS &&
206      frame->headers.cat == NGHTTP2_HCAT_REQUEST) {
207     /* Get stream ID of our request */
208     c->stream_id = frame->hd.stream_id;
209   }
210   return 0;
211 }
212 static int on_frame_send(nghttp2_session *session,
213                          const nghttp2_frame *frame,
214                          void *userp)
215 {
216   struct connectdata *conn = (struct connectdata *)userp;
217   (void)session;
218   (void)frame;
219   infof(conn->data, "on_frame_send() was called\n");
220   return 0;
221 }
222 static int on_frame_not_send(nghttp2_session *session,
223                              const nghttp2_frame *frame,
224                              int lib_error_code, void *userp)
225 {
226   struct connectdata *conn = (struct connectdata *)userp;
227   (void)session;
228   (void)frame;
229   infof(conn->data, "on_frame_not_send() was called, lib_error_code = %d\n",
230         lib_error_code);
231   return 0;
232 }
233 static int on_stream_close(nghttp2_session *session, int32_t stream_id,
234                            nghttp2_error_code error_code, void *userp)
235 {
236   struct connectdata *conn = (struct connectdata *)userp;
237   struct http_conn *c = &conn->proto.httpc;
238   (void)session;
239   (void)stream_id;
240   infof(conn->data, "on_stream_close() was called, error_code = %d\n",
241         error_code);
242
243   if(stream_id != c->stream_id) {
244     return 0;
245   }
246
247   c->closed = TRUE;
248
249   return 0;
250 }
251
252 static int on_unknown_frame_recv(nghttp2_session *session,
253                                  const uint8_t *head, size_t headlen,
254                                  const uint8_t *payload, size_t payloadlen,
255                                  void *userp)
256 {
257   struct connectdata *conn = (struct connectdata *)userp;
258   (void)session;
259   (void)head;
260   (void)headlen;
261   (void)payload;
262   (void)payloadlen;
263   infof(conn->data, "on_unknown_frame_recv() was called\n");
264   return 0;
265 }
266 static int on_begin_headers(nghttp2_session *session,
267                             const nghttp2_frame *frame, void *userp)
268 {
269   struct connectdata *conn = (struct connectdata *)userp;
270   (void)session;
271   (void)frame;
272   infof(conn->data, "on_begin_headers() was called\n");
273   return 0;
274 }
275
276 static const char STATUS[] = ":status";
277
278 /* frame->hd.type is either NGHTTP2_HEADERS or NGHTTP2_PUSH_PROMISE */
279 static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
280                       const uint8_t *name, size_t namelen,
281                       const uint8_t *value, size_t valuelen,
282                       void *userp)
283 {
284   struct connectdata *conn = (struct connectdata *)userp;
285   struct http_conn *c = &conn->proto.httpc;
286   (void)session;
287   (void)frame;
288
289   if(frame->hd.stream_id != c->stream_id) {
290     return 0;
291   }
292
293   if(namelen == sizeof(":status") - 1 &&
294      memcmp(STATUS, name, namelen) == 0) {
295     snprintf(c->header_recvbuf->buffer, 13, "HTTP/2.0 %s", value);
296     c->header_recvbuf->buffer[12] = '\r';
297     return 0;
298   }
299   else {
300     /* convert to a HTTP1-style header */
301     infof(conn->data, "got header\n");
302     Curl_add_buffer(c->header_recvbuf, name, namelen);
303     Curl_add_buffer(c->header_recvbuf, ":", 1);
304     Curl_add_buffer(c->header_recvbuf, value, valuelen);
305     Curl_add_buffer(c->header_recvbuf, "\r\n", 2);
306   }
307
308   return 0; /* 0 is successful */
309 }
310
311 /*
312  * This is all callbacks nghttp2 calls
313  */
314 static const nghttp2_session_callbacks callbacks = {
315   send_callback,         /* nghttp2_send_callback */
316   NULL,                  /* nghttp2_recv_callback */
317   on_frame_recv,         /* nghttp2_on_frame_recv_callback */
318   on_invalid_frame_recv, /* nghttp2_on_invalid_frame_recv_callback */
319   on_data_chunk_recv,    /* nghttp2_on_data_chunk_recv_callback */
320   before_frame_send,     /* nghttp2_before_frame_send_callback */
321   on_frame_send,         /* nghttp2_on_frame_send_callback */
322   on_frame_not_send,     /* nghttp2_on_frame_not_send_callback */
323   on_stream_close,       /* nghttp2_on_stream_close_callback */
324   on_unknown_frame_recv, /* nghttp2_on_unknown_frame_recv_callback */
325   on_begin_headers,      /* nghttp2_on_begin_headers_callback */
326   on_header              /* nghttp2_on_header_callback */
327 };
328
329 /*
330  * The HTTP2 settings we send in the Upgrade request
331  */
332 static nghttp2_settings_entry settings[] = {
333   { NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 100 },
334   { NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE, NGHTTP2_INITIAL_WINDOW_SIZE },
335 };
336
337 #define H2_BUFSIZE 4096
338
339 /*
340  * Initialize nghttp2 for a Curl connection
341  */
342 CURLcode Curl_http2_init(struct connectdata *conn)
343 {
344   if(!conn->proto.httpc.h2) {
345     int rc;
346     conn->proto.httpc.inbuf = malloc(H2_BUFSIZE);
347     if(conn->proto.httpc.inbuf == NULL)
348       return CURLE_OUT_OF_MEMORY;
349
350     /* The nghttp2 session is not yet setup, do it */
351     rc = nghttp2_session_client_new(&conn->proto.httpc.h2,
352                                     &callbacks, conn);
353     if(rc) {
354       failf(conn->data, "Couldn't initialize nghttp2!");
355       return CURLE_OUT_OF_MEMORY; /* most likely at least */
356     }
357   }
358   return CURLE_OK;
359 }
360
361 /*
362  * Send a request using http2
363  */
364 CURLcode Curl_http2_send_request(struct connectdata *conn)
365 {
366   (void)conn;
367   return CURLE_OK;
368 }
369
370 /*
371  * Append headers to ask for a HTTP1.1 to HTTP2 upgrade.
372  */
373 CURLcode Curl_http2_request_upgrade(Curl_send_buffer *req,
374                                     struct connectdata *conn)
375 {
376   CURLcode result;
377   ssize_t binlen;
378   char *base64;
379   size_t blen;
380   struct SingleRequest *k = &conn->data->req;
381   uint8_t *binsettings = conn->proto.httpc.binsettings;
382
383   Curl_http2_init(conn);
384
385   /* As long as we have a fixed set of settings, we don't have to dynamically
386    * figure out the base64 strings since it'll always be the same. However,
387    * the settings will likely not be fixed every time in the future.
388    */
389
390   /* this returns number of bytes it wrote */
391   binlen = nghttp2_pack_settings_payload(binsettings, H2_BINSETTINGS_LEN,
392                                          settings,
393                                          sizeof(settings)/sizeof(settings[0]));
394   if(!binlen) {
395     failf(conn->data, "nghttp2 unexpectedly failed on pack_settings_payload");
396     return CURLE_FAILED_INIT;
397   }
398   conn->proto.httpc.binlen = binlen;
399
400   result = Curl_base64_encode(conn->data, (const char *)binsettings, binlen,
401                               &base64, &blen);
402   if(result)
403     return result;
404
405   result = Curl_add_bufferf(req,
406                             "Connection: Upgrade, HTTP2-Settings\r\n"
407                             "Upgrade: %s\r\n"
408                             "HTTP2-Settings: %s\r\n",
409                             NGHTTP2_PROTO_VERSION_ID, base64);
410   free(base64);
411
412   k->upgr101 = UPGR101_REQUESTED;
413
414   return result;
415 }
416
417 /*
418  * If the read would block (EWOULDBLOCK) we return -1. Otherwise we return
419  * a regular CURLcode value.
420  */
421 static ssize_t http2_recv(struct connectdata *conn, int sockindex,
422                           char *mem, size_t len, CURLcode *err)
423 {
424   CURLcode rc;
425   ssize_t rv;
426   ssize_t nread;
427   struct http_conn *httpc = &conn->proto.httpc;
428
429   (void)sockindex; /* we always do HTTP2 on sockindex 0 */
430
431   if(httpc->bodystarted &&
432      httpc->nread_header_recvbuf < httpc->header_recvbuf->size_used) {
433     size_t left =
434       httpc->header_recvbuf->size_used - httpc->nread_header_recvbuf;
435     size_t ncopy = len < left ? len : left;
436     memcpy(mem, httpc->header_recvbuf->buffer + httpc->nread_header_recvbuf,
437            ncopy);
438     httpc->nread_header_recvbuf += ncopy;
439     return ncopy;
440   }
441
442   if(httpc->data) {
443     nread = len < httpc->datalen ? len : httpc->datalen;
444     memcpy(mem, httpc->data, nread);
445
446     httpc->data += nread;
447     httpc->datalen -= nread;
448
449     infof(conn->data, "%zu data written\n", nread);
450     if(httpc->datalen == 0) {
451       httpc->data = NULL;
452       httpc->datalen = 0;
453     }
454     return nread;
455   }
456
457   conn->proto.httpc.mem = mem;
458   conn->proto.httpc.len = len;
459
460   infof(conn->data, "http2_recv: %d bytes buffer\n",
461         conn->proto.httpc.len);
462
463   rc = 0;
464   nread = ((Curl_recv*)httpc->recv_underlying)(conn, FIRSTSOCKET,
465                                                httpc->inbuf, H2_BUFSIZE, &rc);
466
467   if(rc == CURLE_AGAIN) {
468     *err = rc;
469     return -1;
470   }
471
472   if(nread == -1) {
473     failf(conn->data, "Failed receiving HTTP2 data");
474     *err = rc;
475     return 0;
476   }
477
478   infof(conn->data, "nread=%zd\n", nread);
479   rv = nghttp2_session_mem_recv(httpc->h2,
480                                 (const uint8_t *)httpc->inbuf, nread);
481
482   if(nghttp2_is_fatal((int)rv)) {
483     failf(conn->data, "nghttp2_session_mem_recv() returned %d:%s\n",
484           rv, nghttp2_strerror((int)rv));
485     *err = CURLE_RECV_ERROR;
486     return 0;
487   }
488   infof(conn->data, "nghttp2_session_mem_recv() returns %zd\n", rv);
489   /* Always send pending frames in nghttp2 session, because
490      nghttp2_session_mem_recv() may queue new frame */
491   rv = nghttp2_session_send(httpc->h2);
492   if(rv != 0) {
493     *err = CURLE_SEND_ERROR;
494     return 0;
495   }
496   if(len != httpc->len) {
497     return len - conn->proto.httpc.len;
498   }
499   /* If stream is closed, return 0 to signal the http routine to close
500      the connection */
501   if(httpc->closed) {
502     return 0;
503   }
504   *err = CURLE_AGAIN;
505   return -1;
506 }
507
508 #define MAKE_NV(k, v)                                           \
509   { (uint8_t*)k, (uint8_t*)v, sizeof(k) - 1, sizeof(v) - 1 }
510
511 #define MAKE_NV2(k, v, vlen)                            \
512   { (uint8_t*)k, (uint8_t*)v, sizeof(k) - 1, vlen }
513
514 /* return number of received (decrypted) bytes */
515 static ssize_t http2_send(struct connectdata *conn, int sockindex,
516                           const void *mem, size_t len, CURLcode *err)
517 {
518   /*
519    * BIG TODO: Currently, we send request in this function, but this
520    * function is also used to send request body. It would be nice to
521    * add dedicated function for request.
522    */
523   int rv;
524   struct http_conn *httpc = &conn->proto.httpc;
525   nghttp2_nv *nva;
526   size_t nheader;
527   size_t i;
528   char *hdbuf = (char*)mem;
529   char *end;
530   (void)sockindex;
531
532   infof(conn->data, "http2_send len=%zu\n", len);
533
534   /* Calculate number of headers contained in [mem, mem + len) */
535   /* Here, we assume the curl http code generate *correct* HTTP header
536      field block */
537   nheader = 0;
538   for(i = 0; i < len; ++i) {
539     if(hdbuf[i] == 0x0a) {
540       ++nheader;
541     }
542   }
543   /* We counted additional 2 \n in the first and last line. We need 3
544      new headers: :method, :path and :scheme. Therefore we need one
545      more space. */
546   nheader += 1;
547   nva = malloc(sizeof(nghttp2_nv) * nheader);
548   if(nva == NULL) {
549     *err = CURLE_OUT_OF_MEMORY;
550     return -1;
551   }
552   /* Extract :method, :path from request line */
553   end = strchr(hdbuf, ' ');
554   nva[0].name = (unsigned char *)":method";
555   nva[0].namelen = (uint16_t)strlen((char *)nva[0].name);
556   nva[0].value = (unsigned char *)hdbuf;
557   nva[0].valuelen = (uint16_t)(end - hdbuf);
558
559   hdbuf = end + 1;
560
561   end = strchr(hdbuf, ' ');
562   nva[1].name = (unsigned char *)":path";
563   nva[1].namelen = (uint16_t)strlen((char *)nva[1].name);
564   nva[1].value = (unsigned char *)hdbuf;
565   nva[1].valuelen = (uint16_t)(end - hdbuf);
566
567   nva[2].name = (unsigned char *)":scheme";
568   nva[2].namelen = (uint16_t)strlen((char *)nva[2].name);
569   if(conn->handler->flags & PROTOPT_SSL)
570     nva[2].value = (unsigned char *)"https";
571   else
572     nva[2].value = (unsigned char *)"http";
573   nva[2].valuelen = (uint16_t)strlen((char *)nva[2].value);
574
575   hdbuf = strchr(hdbuf, 0x0a);
576   ++hdbuf;
577
578   for(i = 3; i < nheader; ++i) {
579     end = strchr(hdbuf, ':');
580     assert(end);
581     if(end - hdbuf == 4 && Curl_raw_nequal("host", hdbuf, 4)) {
582       nva[i].name = (unsigned char *)":authority";
583       nva[i].namelen = (uint16_t)strlen((char *)nva[i].name);
584     }
585     else {
586       nva[i].name = (unsigned char *)hdbuf;
587       nva[i].namelen = (uint16_t)(end - hdbuf);
588     }
589     hdbuf = end + 1;
590     for(; *hdbuf == ' '; ++hdbuf);
591     end = strchr(hdbuf, 0x0d);
592     assert(end);
593     nva[i].value = (unsigned char *)hdbuf;
594     nva[i].valuelen = (uint16_t)(end - hdbuf);
595
596     hdbuf = end + 2;
597   }
598
599   rv = nghttp2_submit_request(httpc->h2, 0, nva, nheader, NULL, NULL);
600
601   free(nva);
602
603   if(rv != 0) {
604     *err = CURLE_SEND_ERROR;
605     return -1;
606   }
607
608   rv = nghttp2_session_send(httpc->h2);
609
610   if(rv != 0) {
611     *err = CURLE_SEND_ERROR;
612     return -1;
613   }
614
615   /* TODO: Still whole HEADERS frame may have not been sent because of
616      EAGAIN. But I don't know how to setup to call
617      nghttp2_session_send() when socket becomes writable. */
618
619   return len;
620 }
621
622 int Curl_http2_switched(struct connectdata *conn)
623 {
624   int rv;
625   CURLcode rc;
626   struct http_conn *httpc = &conn->proto.httpc;
627   /* we are switched! */
628   /* Don't know this is needed here at this moment. Original
629      handler->flags is still useful. */
630   /* conn->handler = &Curl_handler_http2; */
631   httpc->recv_underlying = (recving)conn->recv[FIRSTSOCKET];
632   httpc->send_underlying = (sending)conn->send[FIRSTSOCKET];
633   conn->recv[FIRSTSOCKET] = http2_recv;
634   conn->send[FIRSTSOCKET] = http2_send;
635   infof(conn->data, "We have switched to HTTP2\n");
636   httpc->bodystarted = FALSE;
637   httpc->closed = FALSE;
638   httpc->header_recvbuf = Curl_add_buffer_init();
639   httpc->nread_header_recvbuf = 0;
640   httpc->data = NULL;
641   httpc->datalen = 0;
642
643   conn->httpversion = 20;
644
645   /* Put place holder for status line */
646   Curl_add_buffer(httpc->header_recvbuf, "HTTP/2.0 200\r\n", 14);
647
648   /* TODO: May get CURLE_AGAIN */
649   rv = (int) ((Curl_send*)httpc->send_underlying)
650     (conn, FIRSTSOCKET,
651      NGHTTP2_CLIENT_CONNECTION_HEADER,
652      NGHTTP2_CLIENT_CONNECTION_HEADER_LEN,
653      &rc);
654   assert(rv == 24);
655   if(conn->data->req.upgr101 == UPGR101_RECEIVED) {
656     /* stream 1 is opened implicitly on upgrade */
657     httpc->stream_id = 1;
658     /* queue SETTINGS frame (again) */
659     rv = nghttp2_session_upgrade(httpc->h2, httpc->binsettings,
660                                  httpc->binlen, NULL);
661     if(rv != 0) {
662       failf(conn->data, "nghttp2_session_upgrade() failed: %s(%d)",
663             nghttp2_strerror(rv), rv);
664       return -1;
665     }
666   }
667   else {
668     /* stream ID is unknown at this point */
669     httpc->stream_id = -1;
670     rv = nghttp2_submit_settings(httpc->h2, NGHTTP2_FLAG_NONE, NULL, 0);
671     if(rv != 0) {
672       failf(conn->data, "nghttp2_submit_settings() failed: %s(%d)",
673             nghttp2_strerror(rv), rv);
674       return -1;
675     }
676   }
677   return 0;
678 }
679
680 #endif