-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow dockerDNS module to have more interactions with caller.
* Replace run function by a class * Allow this class to be startable and stopable * Make tests autonomous * Add Makefile in order to run tests * Modify dockerDNs module version
- Loading branch information
1 parent
c250407
commit e92b6e0
Showing
5 changed files
with
111 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
test: | ||
@python -m twisted.trial tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from .dockerDNS import DNS_PORT, LISTEN_ADDRESS, run | ||
from .dockerDNS import DNS_PORT, LISTEN_ADDRESS, DockerDNS | ||
|
||
__all__ = [ | ||
"DNS_PORT", | ||
"LISTEN_ADDRESS", | ||
"run" | ||
"DockerDNS" | ||
] | ||
|
||
__version__ = 0.2 | ||
__version__ = 0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters