Mercurial > masqmail
diff 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 |
line wrap: on
line diff
--- a/src/masqmail.h Wed Feb 29 18:14:32 2012 +0100 +++ b/src/masqmail.h Wed Feb 29 18:16:50 2012 +0100 @@ -54,9 +54,9 @@ #define ADDR_FLAG_LAST_ROUTE 0x40 typedef struct _address { - gchar *address; - gchar *local_part; - gchar *domain; + gchar *address; /* full addr string: `markus <meillo@marmaro.de>' */ + gchar *local_part; /* in this example: `meillo' */ + gchar *domain; /* in this example: `marmaro.de' */ gint flags; GList *children; struct _address *parent;