Added a tags file. I dunno if this is something that's really supposed to
be in a CVS repository, but for now, it is, so there. :)
This commit is contained in:
+6
-6
@@ -22,15 +22,15 @@
|
||||
|
||||
|
||||
// Client functions...
|
||||
int sock_connect(char *host, unsigned short int port);
|
||||
int sock_close(int fd);
|
||||
int sock_connect (char *host, unsigned short int port);
|
||||
int sock_close (int fd);
|
||||
// Send/receive lines of text
|
||||
int sock_send_string(int fd, char *string);
|
||||
int sock_send_string (int fd, char *string);
|
||||
// Recv gives only one line per call...
|
||||
int sock_recv_string(int fd, char *dest, size_t maxlen);
|
||||
int sock_recv_string (int fd, char *dest, size_t maxlen);
|
||||
// Send/receive raw data
|
||||
int sock_send(int fd, void *src, size_t size);
|
||||
int sock_recv(int fd, void *dest, size_t maxlen);
|
||||
int sock_send (int fd, void *src, size_t size);
|
||||
int sock_recv (int fd, void *dest, size_t maxlen);
|
||||
|
||||
|
||||
// Er, ignore the rest of this file. I'll clean it up sometime...
|
||||
|
||||
Reference in New Issue
Block a user