Skip to content

Commit

Permalink
Adding listener imports for future development
Browse files Browse the repository at this point in the history
  • Loading branch information
iphelix committed Oct 12, 2017
1 parent e3b6327 commit 200a3b9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion fakenet/listeners/BITSListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

from . import *


# BITS Protocol header keys
K_BITS_SESSION_ID = 'BITS-Session-Id'
K_BITS_ERROR_CONTEXT = 'BITS-Error-Context'
Expand Down
2 changes: 2 additions & 0 deletions fakenet/listeners/DNSListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
import ssl
import socket

from . import *

class DNSListener():

def taste(self, data, dport):
Expand Down
2 changes: 2 additions & 0 deletions fakenet/listeners/IRCListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

import BannerFactory

from . import *

RPL_WELCOME = '001'
SRV_WELCOME = "Welcome to FakeNet."

Expand Down
2 changes: 2 additions & 0 deletions fakenet/listeners/POPListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import ssl
import socket

from . import *

EMAIL = """From: "Bob Example" <bob@example.org>
To: Alice Example <alice@example.com>
Cc: theboss@example.com
Expand Down
1 change: 1 addition & 0 deletions fakenet/listeners/RawListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import ssl
import socket

from . import *

class RawListener():

Expand Down

0 comments on commit 200a3b9

Please sign in to comment.