mirror of
https://github.com/anope/anope.git
synced 2026-07-01 12:46:39 +02:00
555c7ff856
git-svn-id: svn://svn.anope.org/anope/trunk@1345 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1060 5417fbe8-f217-4b02-8779-1006273d7864
131 lines
2.6 KiB
C
131 lines
2.6 KiB
C
/*
|
|
*
|
|
* (C) 2003-2008 Anope Team
|
|
* Contact us at info@anope.org
|
|
*
|
|
* Please read COPYING and README for furhter details.
|
|
*
|
|
* Based on the original code of Epona by Lara.
|
|
* Based on the original code of Services by Andy Church.
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef SMTP_H
|
|
#define SMTP_H
|
|
|
|
/*************************************************************************/
|
|
|
|
/* Some Linux boxes (or maybe glibc includes) require this for the
|
|
* prototype of strsignal(). */
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
/* Windows does not have:
|
|
* unistd.h, grp.h,
|
|
* netdb.h, netinet/in.h,
|
|
* sys/socket.h, sys/time.h
|
|
* Windows requires:
|
|
* winsock.h
|
|
* -- codemastr
|
|
*/
|
|
|
|
#ifndef _WIN32
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
|
|
#ifndef _WIN32
|
|
#include <netdb.h>
|
|
#include <netinet/in.h>
|
|
#include <sys/socket.h>
|
|
#include <arpa/inet.h>
|
|
#else
|
|
#include <winsock.h>
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifndef _WIN32
|
|
#include <sys/time.h>
|
|
#endif
|
|
|
|
#ifdef _AIX
|
|
extern int strcasecmp(const char *, const char *);
|
|
extern int strncasecmp(const char *, const char *, size_t);
|
|
# if 0 /* These break on some AIX boxes (4.3.1 reported). */
|
|
extern int socket(int, int, int);
|
|
extern int connect(int, struct sockaddr *, int);
|
|
# endif
|
|
#endif /* _AIX */
|
|
|
|
/* Some SUN fixs */
|
|
#ifdef __sun
|
|
/* Solaris specific code, types that do not exist in Solaris'
|
|
* * sys/types.h
|
|
* **/
|
|
#ifndef INADDR_NONE
|
|
#define INADDR_NONE (-1)
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef _WIN32
|
|
#define PATH_MAX MAX_PATH
|
|
#define snprintf _snprintf
|
|
#endif
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifdef _WIN32
|
|
#include <winsock.h>
|
|
typedef SOCKET ano_socket_t;
|
|
#define ano_sockclose(fd) closesocket(fd)
|
|
#define ano_sockread(fd, buf, len) recv(fd, buf, len, 0)
|
|
#define ano_sockwrite(fd, buf, len) send(fd, buf, len, 0)
|
|
#else
|
|
typedef int ano_socket_t;
|
|
#define ano_sockclose(fd) close(fd)
|
|
#define ano_sockread(fd, buf, len) read(fd, buf, len)
|
|
#define ano_sockwrite(fd, buf, len) write(fd, buf, len)
|
|
#define SOCKET_ERROR -1
|
|
#endif
|
|
|
|
|
|
/* Data structures */
|
|
struct smtp_header {
|
|
char *header;
|
|
struct smtp_header *next;
|
|
};
|
|
|
|
struct smtp_body_line {
|
|
char *line;
|
|
struct smtp_body_line *next;
|
|
};
|
|
|
|
struct smtp_message {
|
|
struct smtp_header *smtp_headers, *smtp_headers_tail;
|
|
struct smtp_body_line *smtp_body, *smtp_body_tail;
|
|
char *from;
|
|
char *to;
|
|
ano_socket_t sock;
|
|
};
|
|
|
|
struct smtp_message mail;
|
|
|
|
/* set this to 1 if you want to get a log otherwise it runs silent */
|
|
int smtp_debug = 0;
|
|
|
|
#endif /* SMTP_H */
|