~ubuntu-branches/ubuntu/lucid/spamassassin/lucid-proposed

« back to all changes in this revision

Viewing changes to spamc/libspamc.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Ubuntu Merge-o-Matic, Laurent Bigonville
  • Date: 2006-07-31 15:40:08 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060731154008-j37ulp5pgfkddegw
Tags: 3.1.3-1ubuntu1
[ Ubuntu Merge-o-Matic ]
* Merge from debian unstable.

[ Laurent Bigonville ]
* fix debian/control.
* drop debian/patches/40_fix_dns_issue.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include <netinet/in.h>
37
37
#endif
38
38
 
39
 
#ifdef _WIN32
 
39
#if (defined(_WIN32) || !defined(_SYSEXITS_H))
40
40
/* FIXME: This stuff has to go somewhere else */
41
41
 
42
42
#define EX_OK           0
134
134
    /* Filled in by message_read */
135
135
    message_type_t type;
136
136
    char *raw;
137
 
    unsigned int raw_len;               /* Raw message buffer */
 
137
    int raw_len;                /* Raw message buffer */
 
138
    /* note: do not make "raw_len" in particular unsigned! see bug 4593 */
138
139
    char *pre;
139
140
    int pre_len;                /* Pre-message data (e.g. SMTP commands) */
140
141
    char *msg;
141
 
    unsigned int msg_len;               /* The message */
 
142
    int msg_len;                /* The message */
142
143
    char *post;
143
144
    int post_len;               /* Post-message data (e.g. SMTP commands) */
144
145
    int content_length;