[tuxdroid-svn] r6107 - software_suite_v3/smart-core/smart-server/branches/diyse-consortium-june-201
Status: Beta
Brought to you by:
ks156
From: remi <c2m...@c2...> - 2010-06-04 09:46:53
|
Author: remi Date: 2010-06-04 11:38:03 +0200 (Fri, 04 Jun 2010) New Revision: 6107 Modified: software_suite_v3/smart-core/smart-server/branches/diyse-consortium-june-2010-demo/TDSConfiguration.py Log: * Removed localhost access limitation of the server on Windows. Modified: software_suite_v3/smart-core/smart-server/branches/diyse-consortium-june-2010-demo/TDSConfiguration.py =================================================================== --- software_suite_v3/smart-core/smart-server/branches/diyse-consortium-june-2010-demo/TDSConfiguration.py 2010-06-04 09:36:25 UTC (rev 6106) +++ software_suite_v3/smart-core/smart-server/branches/diyse-consortium-june-2010-demo/TDSConfiguration.py 2010-06-04 09:38:03 UTC (rev 6107) @@ -35,7 +35,7 @@ # ------------------------------------------------------------------------------ # Host address for the server sockets if os.name == 'nt': - TDS_CONF_HOST_ADDRESS = '127.0.0.1' + TDS_CONF_HOST_ADDRESS = '' else: TDS_CONF_HOST_ADDRESS = '' |