예제 #1
0
void proxy_func(struct connection *c)
{
    http_func(c);
}
void https_func(struct connection *c)
{
	c->ssl = DUMMY;
	http_func(c);
}
예제 #3
0
파일: https.c 프로젝트: ebichu/dd-wrt
void https_func(struct connection *c)
{
	c->ssl = (void *)-1;
	http_func(c);
}