Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
082bd251
...
082bd2510164dc502260ba70e46b887bc793f46c
authored
2003-08-28 20:00:53 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(struct _f_imap): New members capav and capac to hold the array of capabilities
1 parent
67f86a80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
mailbox/include/imap0.h
mailbox/include/imap0.h
View file @
082bd25
...
...
@@ -92,6 +92,7 @@ enum imap_state
IMAP_COPY
,
IMAP_COPY_ACK
,
IMAP_CREATE
,
IMAP_CREATE_ACK
,
IMAP_DELETE
,
IMAP_DELETE_ACK
,
IMAP_EXPUNGE
,
IMAP_EXPUNGE_ACK
,
IMAP_FETCH
,
IMAP_FETCH_ACK
,
IMAP_GREETINGS
,
IMAP_HEADER
,
...
...
@@ -142,7 +143,8 @@ struct _f_imap
enum
imap_state
state
;
size_t
seq
;
/* Sequence number to build a tag. */
char
*
capa
;
/* Cabilities of the server. */
char
**
capav
;
/* Cabilities of the server. */
size_t
capac
;
/* Number of capabilities in the above array */
int
flags
;
/* IO use to hold the literal and quoted strings send by
...
...
@@ -166,7 +168,7 @@ struct _f_imap
char
*
buffer
;
char
*
ptr
;
char
*
nl
;
off_t
offset
;
/* Dummy, this is use because of the stream buffering.
off_t
offset
;
/* Dummy, this is use
d
because of the stream buffering.
The stream_t maintains and offset and the offset we use must
be in sync. */
...
...
Please
register
or
sign in
to post a comment