summaryrefslogtreecommitdiff
path: root/src/ivysocket.h
diff options
context:
space:
mode:
authorfcolin2005-07-22 14:20:20 +0000
committerfcolin2005-07-22 14:20:20 +0000
commit334891f7c465cc00798511863a8a651713642202 (patch)
tree6930424dd17c076b1bc3f52f41b2900e1a63bac3 /src/ivysocket.h
parentdddd874d06b3bedfcb0759957e0e1a18c00896d8 (diff)
downloadivy-c-334891f7c465cc00798511863a8a651713642202.zip
ivy-c-334891f7c465cc00798511863a8a651713642202.tar.gz
ivy-c-334891f7c465cc00798511863a8a651713642202.tar.bz2
ivy-c-334891f7c465cc00798511863a8a651713642202.tar.xz
socket Buffered output
Diffstat (limited to 'src/ivysocket.h')
-rw-r--r--src/ivysocket.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ivysocket.h b/src/ivysocket.h
index 3d8c991..0f7c99e 100644
--- a/src/ivysocket.h
+++ b/src/ivysocket.h
@@ -69,12 +69,12 @@ extern void SocketServerClose( Server server );
/* Client Part */
extern void SocketKeepAlive( Client client,int keepalive );
extern void SocketClose( Client client );
-extern void SocketSend( Client client, char *fmt, ... );
-extern void SocketSendRaw( Client client, char *buffer, int len );
+extern void SocketSendFmt( Client client, char *fmt, ... );
+extern void SocketSendBuf( Client client, char *buffer, int len );
+extern void SocketFlush (Client client);
extern char *SocketGetPeerHost( Client client );
extern void SocketSetData( Client client, void *data );
extern void *SocketGetData( Client client );
-extern void SocketSendToAll( char *fmt, ... );
extern Client SocketConnect( char * host, unsigned short port,
void *data,
SocketInterpretation interpretation,