If you are a liberal democrat, Sarah Palin is smarter than you.
[citadel.git] / citadel / modules / nntp / serv_nntp.h
index 686416b2015ae4db59eb587b53ab2e1bb06feba5..672dd6779089cf1454f1df32dd4979e2222b382d 100644 (file)
@@ -36,10 +36,23 @@ struct listgroup_range {
 };
 
 
-
 typedef struct _citnntp {              // Information about the current session
        long current_article_number;
 } citnntp;
 
+
+//
+// Various output formats for the LIST commands
+//
+enum {
+       NNTP_LIST_ACTIVE,
+       NNTP_LIST_ACTIVE_TIMES,
+       NNTP_LIST_DISTRIB_PATS,
+       NNTP_LIST_HEADERS,
+       NNTP_LIST_NEWSGROUPS,
+       NNTP_LIST_OVERVIEW_FMT
+};
+
+
 int wildmat(const char *text, const char *p);