updated as of latest changes
[freeradius.git] / todo / realm.h
1 /*
2  *      Yep, this struct is too big, using fixed length strings
3  *      is evil. But it makes things easier - for now.
4  */
5 typedef struct conf {
6         char                    realm[128];
7         char                    radwtmp[128];
8         char                    radutmp[128];
9         char                    acctdir[128];
10         char                    acctdir2[128];
11         char                    authproxy[128];
12         char                    acctproxy[128];
13         char                    striprealm[128];
14         struct conf             *next;
15 } CONF;
16