Add interface values to read config

This commit is contained in:
lakinduakash 2019-04-15 04:15:41 +05:30
parent 96a7c3c739
commit 2ed864095c

View File

@ -65,6 +65,12 @@ static void setConfigValues(const char * key, char *value){
if( !strcmp ( PASSPHRASE, key ))
configValues.pass = value;
if( !strcmp ( WIFI_IFACE, key ))
configValues.iface_wifi = value;
if( !strcmp ( INTERNET_IFACE, key ))
configValues.iface_inet = value;
}