X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fclientsocket.c;h=b28d2000bce86b1babd276603a2248d5a9451917;hb=4e6233ae0eefb338a0049e29e13d6b7997b9792e;hp=a4b521864087357dff41622fd57e027be94bae25;hpb=6f22e06d1c771f2c5ceca1362300c8309d618065;p=citadel.git diff --git a/citadel/clientsocket.c b/citadel/clientsocket.c index a4b521864..b28d2000b 100644 --- a/citadel/clientsocket.c +++ b/citadel/clientsocket.c @@ -4,49 +4,24 @@ * sockets for the Citadel client; for that you must look in ipc_c_tcp.c * (which, uncoincidentally, bears a striking similarity to this file). * - * Copyright (c) 1987-2011 by the citadel.org team + * Copyright (c) 1987-2017 by the citadel.org team * * This program is open source software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as published - * by the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. + * modify it under the terms of the GNU General Public License, version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "sysdep.h" #include #include -#include -#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" #include "ctdl_module.h" +#include "clientsocket.h" int sock_connect(char *host, char *service) { @@ -96,7 +71,7 @@ int sock_connect(char *host, char *service) for (ai = res; ai != NULL; ai = ai->ai_next) { sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); if (sock < 0) { - syslog(LOG_ERR, "socket() failed: %s", strerror(errno)); + syslog(LOG_ERR, "%s: %m", host); freeaddrinfo(res); return(-1); } @@ -106,7 +81,7 @@ int sock_connect(char *host, char *service) return(sock); } else { - syslog(LOG_ERR, "connect() failed: %s", strerror(errno)); + syslog(LOG_ERR, "%s: %m", host); close(sock); } } @@ -129,26 +104,20 @@ int sock_connect(char *host, char *service) * 0 Request timed out. * -1 Connection is broken, or other error. */ -int socket_read_blob(int *Socket, StrBuf * Target, int bytes, int timeout) +int socket_read_blob(int *Socket, StrBuf *Target, int bytes, int timeout) { - CitContext *CCC = MyContext(); const char *Error; int retval = 0; - - retval = StrBufReadBLOBBuffered(Target, - CCC->SBuf.Buf, - &CCC->SBuf.ReadWritePointer, - Socket, 1, bytes, O_TERM, &Error); - + retval = StrBufReadBLOBBuffered(Target, CC->SBuf.Buf, &CC->SBuf.ReadWritePointer, Socket, 1, bytes, O_TERM, &Error); if (retval < 0) { - syslog(LOG_CRIT, "socket_read_blob() failed: %s", Error); + syslog(LOG_ERR, "clientsocket: socket_read_blob() failed: %s", Error); } return retval; } -int CtdlSockGetLine(int *sock, StrBuf * Target, int nSec) +int CtdlSockGetLine(int *sock, StrBuf *Target, int nSec) { CitContext *CCC = MyContext(); const char *Error; @@ -159,16 +128,15 @@ int CtdlSockGetLine(int *sock, StrBuf * Target, int nSec) CCC->SBuf.Buf, &CCC->SBuf.ReadWritePointer, sock, nSec, 1, &Error); - if ((rc < 0) && (Error != NULL)) - syslog(LOG_CRIT, "CtdlSockGetLine() failed: %s", Error); + if ((rc < 0) && (Error != NULL)) { + syslog(LOG_ERR, "clientsocket: CtdlSockGetLine() failed: %s", Error); + } return rc; } /* * client_getln() ... Get a LF-terminated line of text from the client. - * (This is implemented in terms of client_read() and could be - * justifiably moved out of sysdep.c) */ int sock_getln(int *sock, char *buf, int bufsize) { @@ -224,7 +192,6 @@ int sock_write_timeout(int *sock, const char *buf, int nbytes, int timeout) FD_ZERO(&rfds); FD_SET(*sock, &rfds); if (select(*sock + 1, NULL, &rfds, NULL, &tv) == -1) { -/// *Error = strerror(errno); close (*sock); *sock = -1; return -1; @@ -249,7 +216,6 @@ int sock_write_timeout(int *sock, const char *buf, int nbytes, int timeout) FD_ZERO(&rfds); FD_SET(*sock, &rfds); if (select(*sock + 1, NULL, &rfds, NULL, &tv) == -1) { -/// *Error = strerror(errno); close (*sock); *sock = -1; return -1; @@ -260,11 +226,8 @@ int sock_write_timeout(int *sock, const char *buf, int nbytes, int timeout) } - /* * client_getln() ... Get a LF-terminated line of text from the client. - * (This is implemented in terms of client_read() and could be - * justifiably moved out of sysdep.c) */ int sock_getln_err(int *sock, char *buf, int bufsize, int *rc, int nSec) { @@ -288,6 +251,7 @@ int sock_getln_err(int *sock, char *buf, int bufsize, int *rc, int nSec) return i; } + /* * Multiline version of sock_gets() ... this is a convenience function for * client side protocol implementations. It only returns the first line of