2013-06-23 05:12:25 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
# include "core.h"
|
|
|
|
# include "common.h"
|
|
|
|
# include "debug.h"
|
|
|
|
|
|
|
|
void DUMP_PROXY_CHAIN(proxy_data *pchain, unsigned int count) {
|
2013-06-25 11:01:14 +00:00
|
|
|
char ip_buf[16];
|
|
|
|
for (; count; pchain++, count--) {
|
|
|
|
pc_stringfromipv4(&pchain->ip.octet[0], ip_buf);
|
|
|
|
PDEBUG("[%s] %s %s:%d", proxy_state_strmap[pchain->ps],
|
|
|
|
proxy_type_strmap[pchain->pt],
|
|
|
|
ip_buf, htons(pchain->port));
|
|
|
|
if (*pchain->user || *pchain->pass) {
|
|
|
|
PSTDERR(" [u=%s,p=%s]", pchain->user, pchain->pass);
|
|
|
|
}
|
|
|
|
PSTDERR("\n");
|
|
|
|
}
|
2013-06-23 05:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|