pike.git
/
lib
/
modules
/
Protocols.pmod
/
DNS.pmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Protocols.pmod/DNS.pmod:1:
-
// $Id: DNS.pmod,v 1.
96
2008/
06
/
28
16
:
36
:
56
nilsson
Exp $
+
// $Id: DNS.pmod,v 1.
97
2008/
07
/
13
14
:
04
:
02
marcus
Exp $
// Not yet finished -- Fredrik Hubinette //! Domain Name System //! RFC 1035 #pike __REAL_VERSION__
-
constant NOERROR=0;
-
constant FORMERR=1;
-
constant SERVFAIL=2;
-
constant NXDOMAIN=3;
-
constant NOTIMPL=4;
-
constant NXRRSET=8;
+
final
constant NOERROR=0;
+
final
constant FORMERR=1;
+
final
constant SERVFAIL=2;
+
final
constant NXDOMAIN=3;
+
final
constant NOTIMPL=4;
+
final
constant NXRRSET=8;
-
constant QUERY=0;
+
final
constant QUERY=0;
//! Resource classes enum ResourceClass { //! Class Internet C_IN=1, //! Class CSNET (Obsolete) C_CS=2,