X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=4431ccf6a6efefc3224a01da0e2369a745df5f2e;hp=146a582c9885e7c3856100d6c9c9a71af55d41ce;hb=85963f4c857abc2d9a4c5a3245cc11257140b9a6;hpb=ee96ccabbbf0180d5631d3c22838456f28ee9c15 diff --git a/src/conf.c b/src/conf.c index 146a582c..4431ccf6 100644 --- a/src/conf.c +++ b/src/conf.c @@ -18,6 +18,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* Created more dynamic storage for lines read from the config file. -- + Cris van Pelt */ + #include "config.h" #include @@ -56,6 +59,7 @@ static internal_config_t hazahaza[] = { { "PingTimeout", pingtimeout, TYPE_INT }, { "TapDevice", tapdevice, TYPE_NAME }, { "KeyExpire", keyexpire, TYPE_INT }, + { "VpnMask", vpnmask, TYPE_IP }, { NULL, 0, 0 } }; @@ -111,15 +115,27 @@ add_config_val(config_t **cfg, int argtype, char *val) int readconfig(const char *fname, FILE *fp) { - char line[81]; + char *line, *temp_buf; char *p, *q; int i, lineno = 0; config_t *cfg; + line = (char *)xmalloc(80 * sizeof(char)); + temp_buf = (char *)xmalloc(80 * sizeof(char)); + for(;;) { if(fgets(line, 80, fp) == NULL) return 0; + + while(!index(line, '\n')) + { + fgets(temp_buf, (strlen(line)+1) * 80, fp); + if(!temp_buf) + break; + strcat(line, temp_buf); + line = (char *)xrealloc(line, (strlen(line)+1) * sizeof(char)); + } lineno++; if((p = strtok(line, "\t\n\r =")) == NULL)