summaryrefslogtreecommitdiffstats
path: root/lib_edges.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib_edges.py')
-rw-r--r--lib_edges.py20
1 files changed, 3 insertions, 17 deletions
diff --git a/lib_edges.py b/lib_edges.py
index 06402ef..e2f96f6 100644
--- a/lib_edges.py
+++ b/lib_edges.py
@@ -32,12 +32,11 @@ class HTTPS(LibEdge):
defaults = dict((
STYLE.bold,
))
+ summary = 'HTTP over SSL/TLS'
-class LuciHTTPS(HTTPS):
- defaults = dict((
- LABEL('port 8084'),
- ))
+class HTTPSDst(LibEdge):
+ common_dst_of = HTTPS
class ApplicationSpecificProtocol(LibEdge):
@@ -46,12 +45,6 @@ class ApplicationSpecificProtocol(LibEdge):
))
-class RICCIRPC(ApplicationSpecificProtocol):
- defaults = dict((
- LABEL('port 11111'),
- ))
-
-
class SNMP(ApplicationSpecificProtocol):
defaults = dict((
LABEL('port 161'),
@@ -123,13 +116,6 @@ class DelegateOddjobExec(Delegate, OddjobExec):
pass
-class DelegateRICCIRPC(Delegate, RICCIRPC):
- pass
-
-
-class DelegateLuciHTTPS(Delegate, LuciHTTPS):
- pass
-
class DelegateSNMP(Delegate, SNMP):
pass