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