X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=include%2Fatalk%2Futil.h;h=6d92e15d3815d1270f212dcbd112863e69526fb6;hp=12aaba90bd653798d0073ec9b661c503fe01a138;hb=e9391ff790167e35ff92adc20d4779f1d9d651aa;hpb=2543f8977bd9392f695a75704ad300958f49ec47 diff --git a/include/atalk/util.h b/include/atalk/util.h index 12aaba90..6d92e15d 100644 --- a/include/atalk/util.h +++ b/include/atalk/util.h @@ -16,6 +16,7 @@ #include #include #include +#include #include #include @@ -25,6 +26,7 @@ #define EXITERR_CLNT 1 /* client related error */ #define EXITERR_CONF 2 /* error in config files/cmd line parameters */ #define EXITERR_SYS 3 /* local system error */ +#define EXITERR_CLOSED 4 /* connection was immediately closed after TCP handshake */ /* Print a SBT and exit */ #define AFP_PANIC(why) \ @@ -72,6 +74,10 @@ #define ntoh64(x) (hton64(x)) #endif +#ifndef SAFE_FREE +#define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0) +#endif + #ifdef WITH_SENDFILE extern ssize_t sys_sendfile (int __out_fd, int __in_fd, off_t *__offset,size_t __count); #endif @@ -148,28 +154,35 @@ extern const char *getip_string(const struct sockaddr *sa); extern unsigned int getip_port(const struct sockaddr *sa); extern void apply_ip_mask(struct sockaddr *ai, int maskbits); extern int compare_ip(const struct sockaddr *sa1, const struct sockaddr *sa2); +extern int tokenize_ip_port(const char *ipurl, char **address, char **port); /* Structures and functions dealing with dynamic pollfd arrays */ -enum fdtype {IPC_FD, LISTEN_FD}; -struct polldata { - enum fdtype fdtype; /* IPC fd or listening socket fd */ - void *data; /* pointer to AFPconfig for listening socket and * - * pointer to afp_child_t for IPC fd */ + +enum asev_fdtype {IPC_FD, LISTEN_FD}; + +/** + * atalk socket event data + **/ +struct asev_data { + enum asev_fdtype fdtype; /* IPC fd or listening socket fd */ + void *private; /* pointer to AFPconfig for listening socket and * + * pointer to afp_child_t for IPC fd */ }; -extern void fdset_add_fd(int maxconns, - struct pollfd **fdsetp, - struct polldata **polldatap, - int *fdset_usedp, - int *fdset_sizep, - int fd, - enum fdtype fdtype, - void *data); -extern void fdset_del_fd(struct pollfd **fdsetp, - struct polldata **polldatap, - int *fdset_usedp, - int *fdset_sizep, - int fd); +/** + * atalk socket event + **/ +struct asev { + struct pollfd *fdset; /* struct pollfd array for poll() */ + struct asev_data *data; /* associated array of data */ + int max; + int used; +}; + +extern struct asev *asev_init(int max); +extern bool asev_add_fd(struct asev *sev, int fd, enum asev_fdtype fdtype, void *private); +extern bool asev_del_fd(struct asev *sev, int fd); + extern int send_fd(int socket, int fd); extern int recv_fd(int fd, int nonblocking);