summaryrefslogtreecommitdiff
path: root/docs/module-doc/dns_8h-source.html
blob: 135072684e1bdf087016e955daabdf224b479fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>InspIRCd: dns.h Source File</title>
<link href="inspircd.doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.3 -->
<div class="qindex"><a class="qindex" href="main.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Compound&nbsp;List</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Compound&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
<h1>dns.h</h1><a href="dns_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*</span>
00002 <span class="comment">dns.h - dns library declarations based on firedns Copyright (C) 2002 Ian Gulliver</span>
00003 <span class="comment"></span>
00004 <span class="comment">This program is free software; you can redistribute it and/or modify</span>
00005 <span class="comment">it under the terms of version 2 of the GNU General Public License as</span>
00006 <span class="comment">published by the Free Software Foundation.</span>
00007 <span class="comment"></span>
00008 <span class="comment">This program is distributed in the hope that it will be useful,</span>
00009 <span class="comment">but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
00010 <span class="comment">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span>
00011 <span class="comment">GNU General Public License for more details.</span>
00012 <span class="comment"></span>
00013 <span class="comment">You should have received a copy of the GNU General Public License</span>
00014 <span class="comment">along with this program; if not, write to the Free Software</span>
00015 <span class="comment">Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA</span>
00016 <span class="comment">*/</span>
00017 
00018 <span class="preprocessor">#ifndef _DNS_H</span>
00019 <span class="preprocessor"></span><span class="preprocessor">#define _DNS_H</span>
00020 <span class="preprocessor"></span>
00021 <span class="preprocessor">#include &lt;sys/types.h&gt;</span>
00022 <span class="preprocessor">#include &lt;sys/socket.h&gt;</span>
00023 <span class="preprocessor">#include &lt;netinet/in.h&gt;</span>
00024 <span class="preprocessor">#include &lt;string&gt;</span>
00025 
<a name="l00026"></a><a class="code" href="structdns__ip4list.html">00026</a> <span class="keyword">struct </span><a class="code" href="structdns__ip4list.html">dns_ip4list</a> {
<a name="l00027"></a><a class="code" href="structdns__ip4list.html#o0">00027</a>         in_addr <a class="code" href="structdns__ip4list.html#o0">ip</a>;
<a name="l00028"></a><a class="code" href="structdns__ip4list.html#o1">00028</a>         <a class="code" href="structdns__ip4list.html">dns_ip4list</a> *<a class="code" href="structdns__ip4list.html#o1">next</a>;
00029 };
00030 
00031 
<a name="l00035"></a><a class="code" href="classDNS.html">00035</a> <span class="keyword">class </span><a class="code" href="classDNS.html">DNS</a>
00036 {
00037 <span class="keyword">private</span>:
<a name="l00038"></a><a class="code" href="classDNS.html#r0">00038</a>         in_addr *<a class="code" href="classDNS.html#r0">binip</a>;
<a name="l00039"></a><a class="code" href="classDNS.html#r1">00039</a>         <span class="keywordtype">char</span>* <a class="code" href="classDNS.html#r1">result</a>;
<a name="l00040"></a><a class="code" href="classDNS.html#r2">00040</a>         <span class="keywordtype">int</span> <a class="code" href="classDNS.html#r2">t</a>;
00041         <span class="keywordtype">void</span> <a class="code" href="classDNS.html#d0">dns_init</a>();
<a name="l00042"></a><a class="code" href="classDNS.html#r3">00042</a>         <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classDNS.html#r3">fd</a>;
00043         <span class="keywordtype">void</span> <a class="code" href="classDNS.html#d1">dns_init_2</a>(<span class="keyword">const</span> <span class="keywordtype">char</span>* dnsserver);
00044         in_addr *<a class="code" href="classDNS.html#d2">dns_aton4</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> * <span class="keyword">const</span> ipstring);
00045         <span class="keywordtype">char</span> *<a class="code" href="classDNS.html#d3">dns_ntoa4</a>(<span class="keyword">const</span> in_addr * <span class="keyword">const</span> ip);
00046         <span class="keywordtype">int</span> <a class="code" href="classDNS.html#d4">dns_getip4</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> * <span class="keyword">const</span> name);
00047         <span class="keywordtype">int</span> <a class="code" href="classDNS.html#d5">dns_getip4list</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> * <span class="keyword">const</span> name);
00048         <span class="keywordtype">int</span> <a class="code" href="classDNS.html#d6">dns_getname4</a>(<span class="keyword">const</span> in_addr * <span class="keyword">const</span> ip);
00049         <span class="keywordtype">char</span> *<a class="code" href="classDNS.html#d7">dns_getresult</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> fd);
00050         in_addr *<a class="code" href="classDNS.html#d8">dns_aton4_s</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> * <span class="keyword">const</span> ipstring, in_addr * <span class="keyword">const</span> ip);
00051         <span class="keywordtype">char</span> *<a class="code" href="classDNS.html#d9">dns_ntoa4_s</a>(<span class="keyword">const</span> in_addr * <span class="keyword">const</span> ip, <span class="keywordtype">char</span> * <span class="keyword">const</span> result);
00052         <span class="keywordtype">char</span> *<a class="code" href="classDNS.html#d10">dns_getresult_s</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> fd, <span class="keywordtype">char</span> * <span class="keyword">const</span> result);
00053         in_addr *<a class="code" href="classDNS.html#d11">dns_aton4_r</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> * <span class="keyword">const</span> ipstring);
00054         <span class="keywordtype">char</span> *<a class="code" href="classDNS.html#d12">dns_ntoa4_r</a>(<span class="keyword">const</span> in_addr * <span class="keyword">const</span> ip);
00055         <span class="keywordtype">char</span> *<a class="code" href="classDNS.html#d13">dns_getresult_r</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> fd);
00056 <span class="keyword">public</span>:
00063         <a class="code" href="classDNS.html#a0">DNS</a>();
00067         <a class="code" href="classDNS.html#a0">DNS</a>(std::string dnsserver);
00070         <a class="code" href="classDNS.html#a2">~DNS</a>();
00075         <span class="keywordtype">bool</span> <a class="code" href="classDNS.html#a3">ReverseLookup</a>(std::string ip);
00079         <span class="keywordtype">bool</span> <a class="code" href="classDNS.html#a4">ForwardLookup</a>(std::string host);
00083         <span class="keywordtype">bool</span> <a class="code" href="classDNS.html#a5">HasResult</a>();
00087         std::string <a class="code" href="classDNS.html#a6">GetResult</a>();
00091         <span class="keywordtype">int</span> <a class="code" href="classDNS.html#a7">GetFD</a>();
00092         <span class="keywordtype">void</span> <a class="code" href="classDNS.html#a8">SetNS</a>(std::string dnsserver);
00093 };
00094 
00095 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Sun May 15 18:36:01 2005 for InspIRCd by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 > 
</a>1.3.3 </small></address>
</body>
</html>