void proxy_func(struct connection *c) { http_func(c); }
void https_func(struct connection *c) { c->ssl = DUMMY; http_func(c); }
void https_func(struct connection *c) { c->ssl = (void *)-1; http_func(c); }