aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-03-10 12:56:45 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-03-10 12:56:45 +0000
commit1fcf52cae4ca8f6c407dc5a762bcae47f8e47417 (patch)
treeedb04d83d4a39f0cb4389bf259ca9d337ae5aadd /lib/imap.c
parentcbea345f612e2c0e2a734bd52b002eb7c93bf0cc (diff)
imap: Reworked some function descriptions
Diffstat (limited to 'lib/imap.c')
-rw-r--r--lib/imap.c30
1 files changed, 23 insertions, 7 deletions
diff --git a/lib/imap.c b/lib/imap.c
index 803c65366..25067c7b9 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -326,10 +326,16 @@ static char *imap_atom(const char *str)
return newstr;
}
-/* Determines whether the untagged response is related to a specified
- command by checking if it is in format "* <command-name> ..." or
- "* <number> <command-name> ...". The "* " marker is assumed to have
- already been checked by the caller. */
+/***********************************************************************
+ *
+ * imap_matchresp()
+ *
+ * Determines whether the untagged response is related to the specified
+ * command by checking if it is in format "* <command-name> ..." or
+ * "* <number> <command-name> ...".
+ *
+ * The "* " marker is assumed to have already been checked by the caller.
+ */
static bool imap_matchresp(const char *line, size_t len, const char *cmd)
{
const char *end = line + len;
@@ -361,8 +367,13 @@ static bool imap_matchresp(const char *line, size_t len, const char *cmd)
return FALSE;
}
-/* Function that checks whether the given string is a valid tagged, untagged
- or continuation response which can be processed by the response handler. */
+/***********************************************************************
+ *
+ * imap_endofresp()
+ *
+ * Checks whether the given string is a valid tagged, untagged or continuation
+ * response which can be processed by the response handler.
+ */
static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
int *resp)
{
@@ -458,7 +469,12 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
return FALSE; /* Nothing for us */
}
-/* This is the ONLY way to change IMAP state! */
+/***********************************************************************
+ *
+ * state()
+ *
+ * This is the ONLY way to change IMAP state!
+ */
static void state(struct connectdata *conn, imapstate newstate)
{
struct imap_conn *imapc = &conn->proto.imapc;