Mercurial > emacs
annotate lib-src/pop.h @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | 00d52ba071ea |
children | 7e1538a45702 |
rev | line source |
---|---|
9158 | 1 /* pop.h: Header file for the "pop.c" client POP3 protocol. |
2 Copyright (c) 1991,1993 Free Software Foundation, Inc. | |
3 Written by Jonathan Kamens, jik@security.ov.com. | |
4 | |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
9158
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
9158
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
9158 | 21 |
22 #include <stdio.h> | |
23 | |
24 #define GETLINE_MIN 1024 /* the getline buffer starts out this */ | |
25 /* size */ | |
26 #define GETLINE_INCR 1024 /* the getline buffer is grown by this */ | |
27 /* size when it needs to grow */ | |
28 | |
29 extern char pop_error[]; | |
30 extern int pop_debug; | |
31 | |
32 struct _popserver | |
33 { | |
34 int file, data; | |
35 char *buffer; | |
36 int buffer_size, buffer_index; | |
37 int in_multi; | |
15103
00d52ba071ea
(struct _popserver): New field trash_started.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
38 int trash_started; |
9158 | 39 }; |
40 | |
41 typedef struct _popserver *popserver; | |
42 | |
43 /* | |
44 * Valid flags for the pop_open function. | |
45 */ | |
46 | |
47 #define POP_NO_KERBEROS (1<<0) | |
48 #define POP_NO_HESIOD (1<<1) | |
49 #define POP_NO_GETPASS (1<<2) | |
50 | |
51 #ifdef __STDC__ | |
52 #define _ARGS(a) a | |
53 #else | |
54 #define _ARGS(a) () | |
55 #endif | |
56 | |
57 extern popserver pop_open _ARGS((char *host, char *username, char *password, | |
58 int flags)); | |
59 extern int pop_stat _ARGS((popserver server, int *count, int *size)); | |
60 extern int pop_list _ARGS((popserver server, int message, int **IDs, | |
61 int **size)); | |
62 extern char *pop_retrieve _ARGS((popserver server, int message, int markfrom)); | |
63 extern int pop_retrieve_first _ARGS((popserver server, int message, | |
64 char **response)); | |
65 extern int pop_retrieve_next _ARGS((popserver server, char **line)); | |
66 extern int pop_retrieve_flush _ARGS((popserver server)); | |
67 extern int pop_top_first _ARGS((popserver server, int message, int lines, | |
68 char **response)); | |
69 extern int pop_top_next _ARGS((popserver server, char **line)); | |
70 extern int pop_top_flush _ARGS((popserver server)); | |
71 extern int pop_multi_first _ARGS((popserver server, char *command, | |
72 char **response)); | |
73 extern int pop_multi_next _ARGS((popserver server, char **line)); | |
74 extern int pop_multi_flush _ARGS((popserver server)); | |
75 extern int pop_delete _ARGS((popserver server, int message)); | |
76 extern int pop_noop _ARGS((popserver server)); | |
77 extern int pop_last _ARGS((popserver server)); | |
78 extern int pop_reset _ARGS((popserver server)); | |
79 extern int pop_quit _ARGS((popserver server)); | |
80 extern void pop_close _ARGS((popserver)); | |
81 | |
82 #undef _ARGS |