Mercurial > masqmail
comparison src/masqmail.h @ 417:8fedb93e9b72
Added comments and debug messages.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Wed, 29 Feb 2012 18:16:50 +0100 |
parents | 5f0829f8e6c7 |
children | d209b4846f2b |
comparison
equal
deleted
inserted
replaced
416:ddac877ced95 | 417:8fedb93e9b72 |
---|---|
52 #define ADDR_FLAG_DEFERED 0x02 | 52 #define ADDR_FLAG_DEFERED 0x02 |
53 #define ADDR_FLAG_FAILED 0x04 | 53 #define ADDR_FLAG_FAILED 0x04 |
54 #define ADDR_FLAG_LAST_ROUTE 0x40 | 54 #define ADDR_FLAG_LAST_ROUTE 0x40 |
55 | 55 |
56 typedef struct _address { | 56 typedef struct _address { |
57 gchar *address; | 57 gchar *address; /* full addr string: `markus <meillo@marmaro.de>' */ |
58 gchar *local_part; | 58 gchar *local_part; /* in this example: `meillo' */ |
59 gchar *domain; | 59 gchar *domain; /* in this example: `marmaro.de' */ |
60 gint flags; | 60 gint flags; |
61 GList *children; | 61 GList *children; |
62 struct _address *parent; | 62 struct _address *parent; |
63 } address; | 63 } address; |
64 | 64 |