/*
- * $Id: ftp.cc,v 1.71 1996/10/28 07:44:20 wessels Exp $
+ * $Id: ftp.cc,v 1.72 1996/11/01 07:43:43 wessels Exp $
*
* DEBUG: section 9 File Transfer Protocol (FTP)
* AUTHOR: Harvest Derived
(void *) ftpData, 0);
if (opt_no_ipcache)
ipcacheInvalidate(ftpData->request->host);
+ if (Config.vizHackAddr.sin_port)
+ vizHackSendPkt(&ftpData->connectState.S, 2);
}
static void
/*
- * $Id: gopher.cc,v 1.57 1996/10/28 07:44:21 wessels Exp $
+ * $Id: gopher.cc,v 1.58 1996/11/01 07:43:44 wessels Exp $
*
* DEBUG: section 10 Gopher
* AUTHOR: Harvest Derived
COMM_SELECT_WRITE,
(PF) gopherSendRequest,
(void *) gopherState, 0);
+ if (Config.vizHackAddr.sin_port)
+ vizHackSendPkt(&gopherState->connectState.S, 2);
}
/*
- * $Id: http.cc,v 1.90 1996/10/29 02:39:09 wessels Exp $
+ * $Id: http.cc,v 1.91 1996/11/01 07:43:45 wessels Exp $
*
* DEBUG: section 11 Hypertext Transfer Protocol (HTTP)
* AUTHOR: Harvest Derived
httpLifetimeExpire, (void *) httpState, 0);
commSetSelect(fd, COMM_SELECT_WRITE,
httpSendRequest, (void *) httpState, 0);
+ if (Config.vizHackAddr.sin_port)
+ vizHackSendPkt(&httpState->connectState.S, 2);
}
}
/*
- * $Id: ssl.cc,v 1.20 1996/10/11 23:11:18 wessels Exp $
+ * $Id: ssl.cc,v 1.21 1996/11/01 07:43:48 wessels Exp $
*
* DEBUG: section 26 Secure Sockets Layer Proxy
* AUTHOR: Duane Wessels
sslProxyConnected(sslState->server.fd, sslState);
else
sslConnected(sslState->server.fd, sslState);
+ if (Config.vizHackAddr.sin_port)
+ vizHackSendPkt(&sslState->connectState.S, 2);
}
int
/*
- * $Id: tunnel.cc,v 1.20 1996/10/11 23:11:18 wessels Exp $
+ * $Id: tunnel.cc,v 1.21 1996/11/01 07:43:48 wessels Exp $
*
* DEBUG: section 26 Secure Sockets Layer Proxy
* AUTHOR: Duane Wessels
sslProxyConnected(sslState->server.fd, sslState);
else
sslConnected(sslState->server.fd, sslState);
+ if (Config.vizHackAddr.sin_port)
+ vizHackSendPkt(&sslState->connectState.S, 2);
}
int
/*
- * $Id: wais.cc,v 1.47 1996/10/28 07:44:30 wessels Exp $
+ * $Id: wais.cc,v 1.48 1996/11/01 07:43:48 wessels Exp $
*
* DEBUG: section 24 WAIS Relay
* AUTHOR: Harvest Derived
COMM_SELECT_WRITE,
(PF) waisSendRequest,
(void *) waisState, 0);
+ if (Config.vizHackAddr.sin_port)
+ vizHackSendPkt(&waisState->connectState.S, 2);
}