* make the write -1 aware here too.
[citadel.git] / citadel / clientsocket.h
index fcaf034b6944375365fc22ccbaf6e03a5bfb9495..6d5189d4a5f9bbd64a3e762213122ce125b7aca8 100644 (file)
 int sock_connect(char *host, char *service, char *protocol);
 int sock_read_to(int *sock, char *buf, int bytes, int timeout, int keep_reading_until_full);
 int sock_read(int *sock, char *buf, int bytes, int keep_reading_until_full);
-int sock_write(int sock, char *buf, int nbytes);
+int sock_write(int *sock, char *buf, int nbytes);
 int ml_sock_gets(int *sock, char *buf);
 int sock_getln(int *sock, char *buf, int bufsize);
 int CtdlSockGetLine(int *sock, StrBuf *Target);
-int sock_puts(int sock, char *buf);
+int sock_puts(int *sock, char *buf);
 
 
 /*