~ubuntu-branches/ubuntu/quantal/evolution-data-server/quantal

« back to all changes in this revision

Viewing changes to camel/providers/pop3/camel-pop3-engine.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach
  • Date: 2012-05-18 19:32:20 UTC
  • mfrom: (1.1.98) (1.6.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120518193220-v4re47nsbqy2ko3t
Tags: 3.4.2-1
* New upstream version.
* Add list-missing target.
* Install gsettings schemas and gconf conversion scripts.
* Include buildflags.mk, and adjust rules to use all hardening flags.
* Move all gtk-doc API documentation to a new evolution-data-server-doc
  binary, and let it break/replace obsolete libedataserverui1.2-dev
  (closes: #672253).
* Build-Depend on libglib2.0-doc and libdbus-glib-1-doc to ensure
  proper cross-reference links in generated gtk-doc API documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
typedef void (*CamelPOP3CommandFunc)(CamelPOP3Engine *pe, CamelPOP3Stream *stream, GCancellable *cancellable, gpointer data);
94
94
 
95
95
struct _CamelPOP3Command {
96
 
        struct _CamelPOP3Command *next;
97
 
        struct _CamelPOP3Command *prev;
98
 
 
99
96
        guint32 flags;
100
97
        camel_pop3_command_t state;
101
98
 
121
118
        guchar *line;   /* current line buffer */
122
119
        guint linelen;
123
120
 
124
 
        struct _CamelPOP3Stream *stream;
 
121
        CamelPOP3Stream *stream;
125
122
 
126
123
        guint sentlen;  /* data sent (so we dont overflow network buffer) */
127
124
 
128
 
        CamelDList active;      /* active commands */
129
 
        CamelDList queue;       /* queue of waiting commands */
130
 
        CamelDList done;        /* list of done commands, awaiting free */
 
125
        GQueue active;  /* active commands */
 
126
        GQueue queue;   /* queue of waiting commands */
 
127
        GQueue done;    /* list of done commands, awaiting free */
131
128
 
132
129
        CamelPOP3Command *current; /* currently busy (downloading) response */
133
130
};