Web Development
webrelay.txt
Associated article: Webrelay: A Multithreaded HTTP Relay Server
Tags: Web Development
Published source code accompanying the article by Peter Zhang in which he presents Webrelay, a freely available multithreaded HTTP relay server which authenticates that clients are legitimate users before they are connected to vendors' webservers. Also see WEBRELAY.ZIP.
Webrelay: A Multithreaded HTTP Relay Server
by Peter Zhang
Listing One
/* Update cookie in the session control data */
int sess_manager_update_cookie(char *seskey, unsigned int keylen,
accept_info *aip, relay_info *rip)
{
chain_node_t *cnp;
int status;
...


