enum {
Maxbustedmx = 100,
};
typedef struct Node Node;
typedef struct Field Field;
typedef Node *Nodeptr;
#define YYSTYPE Nodeptr
struct Node {
Node *next;
int c; /* token type */
char addr; /* true if this is an address */
String *s; /* string representing token */
String *white; /* white space following token */
char *start; /* first byte for this token */
char *end; /* next byte in input */
};
struct Field {
Field *next;
Node *node;
int source;
};
typedef struct DS DS;
typedef struct Mx Mx;
typedef struct Mxtab Mxtab;
struct DS {
/* dial string */
char buf[128];
char expand[128];
char *netdir;
char *proto;
char *host;
char *service;
};
struct Mx
{
char *netdir;
char host[256];
char ip[24];
int pref;
int valid;
};
struct Mxtab
{
DS ds[2];
int nmx;
int amx;
int pmx;
int fd;
Mx *mx;
};
extern Field *firstfield;
extern Field *lastfield;
extern Node *usender;
extern Node *usys;
extern Node *udate;
extern int originator;
extern int destination;
extern int date;
extern int debug;
extern int messageid;
extern char *bustedmxs[Maxbustedmx];
Node* anonymous(Node*);
Node* address(Node*);
int badfieldname(Node*);
Node* bang(Node*, Node*);
Node* colon(Node*, Node*);
Node* link2(Node*, Node*);
Node* link3(Node*, Node*, Node*);
void freenode(Node*);
void newfield(Node*, int);
void freefield(Field*);
void yyinit(char*, int);
int yyparse(void);
int yylex(void);
String* yywhite(void);
Node* whiten(Node*);
void yycleanup(void);
int mxdial0(char*, char*, char*, Mxtab*);
int mxdial(char*, char*, char*, Mx*);
void mxtabfree(Mxtab*);
void dialstringparse(char*, DS*);
#define dprint(...) do if(debug)print(__VA_ARGS__); while(0)
|