}
}
-void CommunicatorClass::LoadArgsIntoSet(const char *listname, set<string> &listset)
+void CommunicatorClass::loadArgsIntoSet(const char *listname, set<string> &listset)
{
vector<string> parts;
stringtok(parts, ::arg()[listname], ", \t");
exit(1);
}
- LoadArgsIntoSet("also-notify", d_alsoNotify);
+ loadArgsIntoSet("also-notify", d_alsoNotify);
- LoadArgsIntoSet("forward-notify", PacketHandler::s_forwardNotify);
+ loadArgsIntoSet("forward-notify", PacketHandler::s_forwardNotify);
}
void CommunicatorClass::mainloop(void)
}
bool notifyDomain(const DNSName &domain);
private:
- void LoadArgsIntoSet(const char *listname, set<string> &listset);
+ void loadArgsIntoSet(const char *listname, set<string> &listset);
void makeNotifySockets();
void queueNotifyDomain(const DomainInfo& di, UeberBackend* B);
int d_nsock4, d_nsock6;