HomeSort by: relevance | last modified time | path
    Searched refs:make_nv (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/demos/http3/
ossl-nghttp3-demo.c 14 static void make_nv(nghttp3_nv *nv, const char *name, const char *value) function
122 make_nv(&nva[num_nv++], ":method", "GET");
123 make_nv(&nva[num_nv++], ":scheme", "https");
124 make_nv(&nva[num_nv++], ":authority", addr);
125 make_nv(&nva[num_nv++], ":path", "/");
126 make_nv(&nva[num_nv++], "user-agent", "OpenSSL-Demo/nghttp3");
ossl-nghttp3-demo-server.c 75 static void make_nv(nghttp3_nv *nv, const char *name, const char *value) function
1160 /* XXX add MAKE_NV("connection", "close"), to resp[] and recheck */
1161 make_nv(&resp[num_nv++], ":status", "200");
1169 make_nv(&resp[num_nv++], "content-type", "text/html");
1184 make_nv(&resp[num_nv++], "content-type", "image/png");
1186 make_nv(&resp[num_nv++], "content-type", "image/vnd.microsoft.icon");
1188 make_nv(&resp[num_nv++], "content-type", "text/html");
1190 make_nv(&resp[num_nv++], "content-type", "application/octet-stream");
1191 make_nv(&resp[num_nv++], "content-length", slength);

Completed in 25 milliseconds