X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ftpd.h;h=3d11bea8841e6554fdf66004c81ec5356fda1341;hb=HEAD;hp=b54c43b107eac78debd99b411fb965774fc938ab;hpb=40a7466516d51fe187b5422e27e3e71795ba830e;p=betaftpd diff --git a/ftpd.h b/ftpd.h index b54c43b..3d11bea 100644 --- a/ftpd.h +++ b/ftpd.h @@ -19,9 +19,7 @@ #define _FTPD_H 1 /* - * This is the port you want BetaFTPD to listen on. The standard - * FTP port is 21 -- if you really want to use BetaFTPD as your - * primary FTP server, change FTP_PORT. + * This is the port you want BetaFTPD to listen on. */ #if WANT_NONROOT #define FTP_PORT 12121 @@ -78,6 +76,8 @@ #undef WANT_DCACHE #endif +extern char message_buf[]; + struct list_options { int recursive; int long_listing; @@ -130,6 +130,7 @@ struct conn { #endif time_t last_transfer; + int free_me; }; /* doubly linked list of file transfers */ @@ -208,6 +209,7 @@ void time_out_sockets(); void remove_bytes(struct conn * const c, const int i); void numeric(struct conn * const c, const int numeric, const char * const format, ...); +void flush_numeric(struct conn * const c); void init_file_transfer(struct ftran * const f); int create_server_socket(); @@ -215,6 +217,10 @@ int create_server_socket(); void clear_bad_fds(int * const server_sock); #endif +#if HAVE_BSD_SENDFILE || HAVE_LINUX_SENDFILE +int mysendfile(int sock, int fd, off_t *offset, size_t count); +#endif + #if WANT_MESSAGE void dump_file(struct conn * const c, const int num, const char * const filename); void list_readmes(struct conn * const c);