X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5dd6771b28c257af405d7248639ed0e3bcdce38b..cf57870921b26703aad420c6741c524b33736ff1:/h/popsbr.h diff --git a/h/popsbr.h b/h/popsbr.h index 168b8c61..9991e473 100644 --- a/h/popsbr.h +++ b/h/popsbr.h @@ -3,24 +3,11 @@ * popsbr.h -- header for POP client subroutines */ -#if 0 -#if !defined(NNTP) && defined(MPOP) -# define command pop_command -# define multiline pop_multiline -#endif -#endif - -#ifdef NNTP -int pop_set (int, int, int, char *); -#else -int pop_set (int, int, int); -#endif - -#ifdef NNTP -int pop_exists (int (*)()); -#endif - -int pop_init (char *, char *, char *, char *, int, int, int, int, char *); +/* TLS flags */ +#define P_INITTLS 0x01 +#define P_NOVERIFY 0x02 +int pop_init (char *, char *, char *, char *, int, int, char *, int, + const char *); int pop_fd (char *, int, char *, int); int pop_stat (int *, int *); int pop_retr (int, int (*)(char *)); @@ -30,31 +17,5 @@ int pop_rset (void); int pop_top (int, int, int (*)(char *)); int pop_quit (void); int pop_done (void); - -#ifdef BPOP -int pop_list (int, int *, int *, int *, int *); -#else +int pop_set (int, int, int); int pop_list (int, int *, int *, int *); -#endif - -#ifdef BPOP -int pop_xtnd (int (*)(), char *, ...); -#endif - -#if defined(MPOP) && !defined(NNTP) -int pop_last (void); -#endif - -#if !defined(NNTP) && defined(MPOP) -/* otherwise they are static functions */ -int command(const char *, ...); -int multiline(void); -#endif - -/* - * Flags for the various pop authentication methods - */ -#define POP_APOP -1 -#define POP_PASSWD 0 -#define POP_RPOP 1 -#define POP_KPOP 2