udyfi

Small client for dy.fi (and possibly other services) DNS renewals
git clone https://git.inz.fi/udyfi/
Log | Files | Refs

config.def.h (635B)


      1 static const time_t minimum_refresh = DAYS(5);
      2 static const time_t minimum_refresh_rand = HOURS(10);
      3 
      4 static const time_t check_interval = MINUTES(4);
      5 static const time_t check_interval_rand = MINUTES(2);
      6 
      7 static const time_t error_fallback = MINUTES(30);
      8 static const time_t error_fallback_rand = MINUTES(5);
      9 
     10 static const char *checkip_service = "checkip.dy.fi";
     11 static const char *checkip_port = "80";
     12 IF_SSL(static bool checkip_ssl = false;)
     13 
     14 static const char *dyndns_service = "dy.fi";
     15 static const char *dyndns_port = "80";
     16 IF_SSL(static bool dyndns_ssl = true;)
     17 
     18 static const char *default_ua = "udyfi/" VERSION " inz@inz.fi";