diff options
Diffstat (limited to 'lib/pop3.h')
-rw-r--r-- | lib/pop3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pop3.h b/lib/pop3.h index 15256738e..e9bbd9195 100644 --- a/lib/pop3.h +++ b/lib/pop3.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 2009, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 2009 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -46,6 +46,7 @@ struct pop3_conn { char *mailbox; /* what to RETR */ size_t eob; /* number of bytes of the EOB (End Of Body) that has been received thus far */ + size_t strip; /* number of bytes from the start to ignore as non-body */ pop3state state; /* always use pop3.c:state() to change state! */ }; |