Exemplo n.º 1
0
ESLconnection::ESLconnection(const char *host, const char *port, const char *password)
{
	connection_construct_common();
	int x_port = atoi(port);

	esl_connect(&handle, host, x_port, password);
}
Exemplo n.º 2
0
ESLconnection::ESLconnection(int socket)
{
	connection_construct_common();
	memset(&handle, 0, sizeof(handle));
	esl_attach_handle(&handle, (esl_socket_t)socket, NULL);
}
Exemplo n.º 3
0
SCGIhandle::SCGIhandle(void)
{
	connection_construct_common();
}