Comparison

net/http.lua @ 11067:f2ffc16a9669 0.11

net.http: Add feature discovery (currently just contains SNI)
author Matthew Wild <mwild1@gmail.com>
date Tue, 15 Sep 2020 09:08:21 +0100
parent 11063:30d3f6f85eb8
child 11068:988ddd57e851
comparison
equal deleted inserted replaced
11063:30d3f6f85eb8 11067:f2ffc16a9669
312 urlencode = util_http.urlencode; 312 urlencode = util_http.urlencode;
313 urldecode = util_http.urldecode; 313 urldecode = util_http.urldecode;
314 formencode = util_http.formencode; 314 formencode = util_http.formencode;
315 formdecode = util_http.formdecode; 315 formdecode = util_http.formdecode;
316 destroy_request = destroy_request; 316 destroy_request = destroy_request;
317 features = {
318 sni = true;
319 };
317 }; 320 };