2
0
Jelmer Vernooij 16 жил өмнө
parent
commit
e0b3ce9265

+ 1 - 1
bin/dul-daemon

@@ -25,5 +25,5 @@ if __name__ == "__main__":
         gitdir = sys.argv[1]
 
     backend = GitBackend(gitdir)
-    server = TCPGitServer(backend, ('localhost', 9418))
+    server = TCPGitServer(backend, 'localhost')
     server.serve_forever()

+ 2 - 2
dulwich/client.py

@@ -18,7 +18,7 @@
 
 import select
 import socket
-from dulwich.protocol import Protocol
+from dulwich.protocol import Protocol, TCP_GIT_PORT
 
 def extract_capabilities(text):
     if not "\0" in text:
@@ -144,7 +144,7 @@ class GitClient(object):
 
 class TCPGitClient(GitClient):
 
-    def __init__(self, host, port=9418):
+    def __init__(self, host, port=TCP_GIT_PORT):
         self._socket = socket.socket()
         self._socket.connect((host, port))
         self.rfile = self._socket.makefile('rb', -1)

+ 1 - 0
dulwich/protocol.py

@@ -16,6 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 # MA  02110-1301, USA.
 
+TCP_GIT_PORT = 9418
 
 class Protocol(object):
 

+ 2 - 2
dulwich/server.py

@@ -17,7 +17,7 @@
 # MA  02110-1301, USA.
 
 import SocketServer
-from dulwich.protocol import Protocol
+from dulwich.protocol import Protocol, TCP_GIT_PORT
 
 class Backend(object):
 
@@ -309,7 +309,7 @@ class TCPGitServer(SocketServer.TCPServer):
     allow_reuse_address = True
     serve = SocketServer.TCPServer.serve_forever
 
-    def __init__(self, backend, addr):
+    def __init__(self, backend, listen_addr, port=TCP_GIT_PORT):
         self.backend = backend
         SocketServer.TCPServer.__init__(self, addr, TCPGitRequestHandler)