Changeset 1974


Ignore:
Timestamp:
04/13/10 13:09:05 (22 months ago)
Author:
dart
Message:

LoPlug?:
o Fix default adress for proxy
o Fix reusable address

Note:
BRAA is full working

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branch/lotatc/2.1.1/loplug/plugins/common/pgproxyclient.py

    r1956 r1974  
    6666     
    6767    # Declarations related to the config 
    68     self.serverAddr = "" 
     68    self.serverAddr = "localhost" 
    6969    self.autoCnx    = False 
    7070    self.connected  = False 
  • branch/lotatc/2.1.1/loplug/server/loplugRouter.py

    r1956 r1974  
    147147    # Start routerSocket manager 
    148148    SocketServer.TCPServer.__init__( self, serverAddress, PlugRequestHandler) 
     149    self.allow_reuse_address = True 
    149150#---------------------------------------------------------------- 
    150151  # To shutdown the instance 
  • trunk/loplug/plugins/common/pgproxyclient.py

    r1948 r1974  
    6666     
    6767    # Declarations related to the config 
    68     self.serverAddr = "" 
     68    self.serverAddr = "localhost" 
    6969    self.autoCnx    = False 
    7070    self.connected  = False 
  • trunk/loplug/server/loplugRouter.py

    r1953 r1974  
    147147    # Start routerSocket manager 
    148148    SocketServer.TCPServer.__init__( self, serverAddress, PlugRequestHandler) 
     149    self.allow_reuse_address = True 
    149150#---------------------------------------------------------------- 
    150151  # To shutdown the instance 
Note: See TracChangeset for help on using the changeset viewer.