summaryrefslogtreecommitdiffstats
path: root/Demo/dns/dnsclass.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/dns/dnsclass.py')
-rwxr-xr-xDemo/dns/dnsclass.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/Demo/dns/dnsclass.py b/Demo/dns/dnsclass.py
deleted file mode 100755
index f90b9e8..0000000
--- a/Demo/dns/dnsclass.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# CLASS values (section 3.2.4)
-
-IN = 1 # the Internet
-CS = 2 # the CSNET class (Obsolete - used only for examples in
- # some obsolete RFCs)
-CH = 3 # the CHAOS class
-HS = 4 # Hesiod [Dyer 87]
-
-# QCLASS values (section 3.2.5)
-
-ANY = 255 # any class
-
-
-# Construct reverse mapping dictionary
-
-_names = dir()
-classmap = {}
-for _name in _names:
- if _name[0] != '_': classmap[eval(_name)] = _name
-
-def classstr(klass):
- if classmap.has_key(klass): return classmap[klass]
- else: return `klass`