aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
Diffstat (limited to 'pop2.c')
-rw-r--r--pop2.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/pop2.c b/pop2.c
index bccc1b6e..1e49a6ca 100644
--- a/pop2.c
+++ b/pop2.c
@@ -1,16 +1,11 @@
-/* Copyright 1996 by Eric S. Raymond
+/*
+ * pop2.c -- POP@ protocol methods
+ *
+ * Copyright 1996 by Eric S. Raymond
* All rights reserved.
* For license terms, see the file COPYING in this directory.
*/
-/***********************************************************************
- module: pop2.c
- project: fetchmail
- programmer: Eric S. Raymond
- description: POP2 method code.
-
- ***********************************************************************/
-
#include <config.h>
#include <stdio.h>
#include "socket.h"
@@ -143,7 +138,10 @@ const static struct method pop2 =
};
int doPOP2 (queryctl)
+/* retrieve messages using POP2 */
struct hostrec *queryctl;
{
return(do_protocol(queryctl, &pop2));
}
+
+/* pop2.c ends here */