libclamav/message.h
b151ef55
 /*
  *  Copyright (C) 2002 Nigel Horne <njh@bandsman.co.uk>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
 #ifndef	_MESSAGE_H
 #define	_MESSAGE_H
 
 typedef struct message {
 	mime_type	mimeType;
0e3b08fc
 	encoding_type	*encodingTypes;
 	int	numberOfEncTypes;	/* size of encodingTypes */
b151ef55
 	char	*mimeSubtype;
c6259ac5
 	int	numberOfArguments;	/* count of mimeArguments */
 	char	**mimeArguments;
b151ef55
 	char	*mimeDispositionType;	/* probably attachment */
 	text	*body_first, *body_last;
285a69b4
 
 	char	base64_1, base64_2, base64_3;
 	int	base64chars;
f5a4d7e8
 	/*
 	 * Markers for the start of various non MIME messages that could
 	 * be included within this message
 	 */
5f72fd3b
 	const text	*bounce;	/* start of a bounced message */
 	const text	*binhex;	/* start of a binhex message */
 	const text	*uuencode;	/* start of a uuencoded message */
 	const text	*yenc;		/* start of a yEnc message */
 	const text	*encoding;	/* is the non MIME message encoded? */
 	const text	*dedupedThisFar;
b151ef55
 } message;
 
 message	*messageCreate(void);
 void	messageDestroy(message *m);
 void	messageReset(message *m);
2bcec72b
 int	messageSetMimeType(message *m, const char *type);
b151ef55
 mime_type	messageGetMimeType(const message *m);
 void	messageSetMimeSubtype(message *m, const char *subtype);
 const	char	*messageGetMimeSubtype(const message *m);
 void	messageSetDispositionType(message *m, const char *disptype);
 const	char	*messageGetDispositionType(const message *m);
 void	messageAddArgument(message *m, const char *arg);
 void	messageAddArguments(message *m, const char *arg);
 const	char	*messageFindArgument(const message *m, const char *variable);
 void	messageSetEncoding(message *m, const char *enctype);
 encoding_type	messageGetEncoding(const message *m);
de617e3e
 int	messageAddLine(message *m, line_t *line);
321d5c00
 int	messageAddStr(message *m, const char *data);
de617e3e
 int	messageAddStrAtTop(message *m, const char *data);
b151ef55
 const	text	*messageGetBody(const message *m);
 void	messageClean(message *m);
1e06e1ab
 fileblob	*messageToFileblob(message *m, const char *dir);
e6b25cd3
 blob	*messageToBlob(message *m);
285a69b4
 text	*messageToText(message *m);
0856891e
 const	text	*binhexBegin(const message *m);
cec5297a
 const	text	*uuencodeBegin(const message *m);
00f95393
 const	text	*yEncBegin(const message *m);
5a01973c
 const	text	*bounceBegin(const message *m);
627465e7
 const	text	*encodingLine(const message *m);
a446de17
 void	messageClearMarkers(message *m);
d1a6ea81
 unsigned char	*decodeLine(message *m, encoding_type enctype, const char *line, unsigned char *buf, size_t buflen);
64ff0d49
 int	isuuencodebegin(const char *line);
b151ef55
 
 #endif	/*_MESSAGE_H*/