mirror of
https://github.com/rofl0r/proxychains-ng
synced 2025-01-10 07:32:55 +08:00
22 lines
566 B
C
22 lines
566 B
C
|
|
||
|
#ifdef DEBUG
|
||
|
# include "core.h"
|
||
|
# include "common.h"
|
||
|
# include "debug.h"
|
||
|
|
||
|
void DUMP_PROXY_CHAIN(proxy_data *pchain, unsigned int count) {
|
||
|
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");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|