diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-02 19:07:12 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-02 19:07:12 +0000 |
commit | 200d4f2d236adb2fb0786399fcf65828e5369128 (patch) | |
tree | c8d2ccb8f302f70358b90bc8909ac0306ffd45cd /include/dns.h | |
parent | 93420ae6c674765a1b2944942d07f077ad415648 (diff) |
Change comment at start of the file, rename dns_connection
to dns_request (they no longer represent connections with
unique FD's so the old name was kind of silly)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4649 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/dns.h')
-rw-r--r-- | include/dns.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dns.h b/include/dns.h index 56e1f25f3..1f520de33 100644 --- a/include/dns.h +++ b/include/dns.h @@ -47,9 +47,9 @@ enum ResolverError class DNS : public Extensible { public: - int dns_getip(const char* name); - int dns_getname(const insp_inaddr* ip); - DNSResult dns_getresult(); + int GetIP(const char* name); + int GetName(const insp_inaddr* ip); + DNSResult GetResult(); DNS(); ~DNS(); }; |