X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fclientsocket.c;h=b28d2000bce86b1babd276603a2248d5a9451917;hb=HEAD;hp=cd375db2d016fc1c7607ac8b588deace27b764ed;hpb=01cc19a4c2da27b4db0e980ccd3ca54d834319c8;p=citadel.git diff --git a/citadel/clientsocket.c b/citadel/clientsocket.c deleted file mode 100644 index cd375db2d..000000000 --- a/citadel/clientsocket.c +++ /dev/null @@ -1,255 +0,0 @@ -/* - * $Id$ - * - * This module handles client-side sockets opened by the Citadel server (for - * the client side of Internet protocols, etc.) It does _not_ handle client - * sockets for the Citadel client; for that you must look in ipc_c_tcp.c - * (which, uncoincidentally, bears a striking similarity to this file). - * - */ - -#include "sysdep.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "citadel.h" -#include "server.h" -#ifndef HAVE_SNPRINTF -#include "snprintf.h" -#endif -#include "sysdep_decls.h" -#include "config.h" -#include "clientsocket.h" - -#ifndef INADDR_NONE -#define INADDR_NONE 0xffffffff -#endif - -int sock_connect(char *host, char *service, char *protocol) -{ - struct hostent *phe; - struct servent *pse; - struct protoent *ppe; - struct sockaddr_in sin; - struct sockaddr_in egress_sin; - int s, type; - - if (host == NULL) return(-1); - if (strlen(host) == 0) return(-1); - if (service == NULL) return(-1); - if (strlen(service) == 0) return(-1); - if (protocol == NULL) return(-1); - if (strlen(protocol) == 0) return(-1); - - memset(&sin, 0, sizeof(sin)); - sin.sin_family = AF_INET; - - pse = getservbyname(service, protocol); - if (pse) { - sin.sin_port = pse->s_port; - } else if ((sin.sin_port = htons((u_short) atoi(service))) == 0) { - lprintf(CTDL_CRIT, "Can't get %s service entry: %s\n", - service, strerror(errno)); - return(-1); - } - phe = gethostbyname(host); - if (phe) { - memcpy(&sin.sin_addr, phe->h_addr, phe->h_length); - } else if ((sin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE) { - lprintf(CTDL_ERR, "Can't get %s host entry: %s\n", - host, strerror(errno)); - return(-1); - } - if ((ppe = getprotobyname(protocol)) == 0) { - lprintf(CTDL_CRIT, "Can't get %s protocol entry: %s\n", - protocol, strerror(errno)); - return(-1); - } - if (!strcmp(protocol, "udp")) { - type = SOCK_DGRAM; - } else { - type = SOCK_STREAM; - } - - s = socket(PF_INET, type, ppe->p_proto); - if (s < 0) { - lprintf(CTDL_CRIT, "Can't create socket: %s\n", strerror(errno)); - return(-1); - } - - /* If citserver is bound to a specific IP address on the host, make - * sure we use that address for outbound connections. - */ - memset(&egress_sin, 0, sizeof(egress_sin)); - egress_sin.sin_family = AF_INET; - if (strlen(config.c_ip_addr) > 0) { - egress_sin.sin_addr.s_addr = inet_addr(config.c_ip_addr); - if (egress_sin.sin_addr.s_addr == !INADDR_ANY) { - egress_sin.sin_addr.s_addr = INADDR_ANY; - } - - /* If this bind fails, no problem; we can still use INADDR_ANY */ - bind(s, (struct sockaddr *)&egress_sin, sizeof(egress_sin)); - } - - /* Now try to connect to the remote host. */ - if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) { - lprintf(CTDL_ERR, "Can't connect to %s:%s: %s\n", - host, service, strerror(errno)); - close(s); - return(-1); - } - - return (s); -} - - - -/* - * sock_read_to() - input binary data from socket, with a settable timeout. - * Returns the number of bytes read, or -1 for error. - */ -int sock_read_to(int sock, char *buf, int bytes, int timeout) -{ - int len,rlen; - fd_set rfds; - struct timeval tv; - int retval; - - len = 0; - while(len0) - && ((buf[strlen(buf)-1]==13) - || (buf[strlen(buf)-1]==10)) ) { - buf[strlen(buf)-1] = 0; - } - return(strlen(buf)); -} - -/* - * Multiline version of sock_gets() ... this is a convenience function for - * client side protocol implementations. It only returns the first line of - * a multiline response, discarding the rest. - */ -int ml_sock_gets(int sock, char *buf) { - char bigbuf[1024]; - int g; - - g = sock_gets(sock, buf); - if (g < 4) return(g); - if (buf[3] != '-') return(g); - - do { - g = sock_gets(sock, bigbuf); - if (g < 0) return(g); - } while ( (g >= 4) && (bigbuf[3] == '-') ); - - return(strlen(buf)); -} - - -/* - * sock_puts() - send line to server - implemented in terms of serv_write() - * Returns the number of bytes written, or -1 for error. - */ -int sock_puts(int sock, char *buf) -{ - int i, j; - - i = sock_write(sock, buf, strlen(buf)); - if (i<0) return(i); - j = sock_write(sock, "\n", 1); - if (j<0) return(j); - return(i+j); -}