client: renamed all public functions

Functions which operate on the whole client list are prefixed with
"client_manager_", and functions which handle just one client just get
"client_".
This commit is contained in:
Max Kellermann
2008-08-28 20:03:02 +02:00
parent 6d18e00099
commit c0197c58ba
6 changed files with 19 additions and 19 deletions
+6 -6
View File
@@ -21,12 +21,12 @@
#include "os_compat.h"
void initInterfaces(void);
void openAInterface(int fd, const struct sockaddr *addr);
void freeAllInterfaces(void);
void closeOldInterfaces(void);
int interfacePrintWithFD(int fd, const char *buffer, size_t len);
void client_manager_init(void);
void client_new(int fd, const struct sockaddr *addr);
void client_manager_deinit(void);
void client_manager_expire(void);
int client_print(int fd, const char *buffer, size_t len);
int doIOForInterfaces(void);
int client_manager_io(void);
#endif