2019-06-18 09:23:24 +00:00
|
|
|
//
|
|
|
|
// Created by lukas on 18.06.19.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef IPREFRESHER_DYNUAPI_H
|
|
|
|
#define IPREFRESHER_DYNUAPI_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "API.h"
|
|
|
|
|
|
|
|
class DynuAPI : API{
|
|
|
|
public:
|
|
|
|
int refreshIp(std::string ip);
|
|
|
|
private:
|
2019-06-18 09:42:26 +00:00
|
|
|
const std::string dynuapikey = "88vNpMfDhMM2YYDNfWR1DNYfRX9W6fYg";
|
2019-06-18 09:23:24 +00:00
|
|
|
|
2019-06-18 09:42:26 +00:00
|
|
|
const std::string domainid = "8506047"; //id of the dynu domain
|
|
|
|
const std::string domainname = "luki.dynu.net";
|
2019-06-18 09:23:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //IPREFRESHER_DYNUAPI_H
|