]> diplodocus.org Git - nmh/blobdiff - uip/popsbr.h
Added missing ')'.
[nmh] / uip / popsbr.h
index 1e825317e6546a9379bd35ace48eca97f07fe8ff..3e70fe7572c0a160c1841021c4af0649a2408215 100644 (file)
@@ -1,13 +1,18 @@
-/* popsbr.h -- header for POP client subroutines
- */
+/* popsbr.h -- POP client subroutines
+ *
+ * This code is Copyright (c) 2017, by the authors of nmh.  See the
+ * COPYRIGHT file in the root directory of the nmh distribution for
+ * complete copyright information. */
 
 /* 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_stat (int *, int *);
-int pop_retr (int, int (*)(void *, char *), void *);
-int pop_dele (int);
-int pop_quit (void);
-int pop_done (void);
+#define P_STARTTLS 0x01
+#define P_INITTLS 0x02
+#define P_TLSENABLEMASK 0x03
+#define P_NOVERIFY 0x04
+
+int pop_init(char *, char *, char *, char *, int, int, char *, int, const char *);
+int pop_stat(int *, int *);
+int pop_retr(int, int (*)(void *, char *), void *);
+int pop_dele(int);
+int pop_quit(void);
+int pop_done(void);