Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
4fd8ebcd
Commit
4fd8ebcd
authored
Mar 12, 2005
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Collector #1507: Zope now binds again to all available IP addresses if
ip-address is unset
parent
07348414
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
doc/CHANGES.txt
doc/CHANGES.txt
+3
-0
lib/python/ZServer/datatypes.py
lib/python/ZServer/datatypes.py
+3
-1
No files found.
doc/CHANGES.txt
View file @
4fd8ebcd
...
@@ -57,6 +57,9 @@ Zope Changes
...
@@ -57,6 +57,9 @@ Zope Changes
text/<foo> types
text/<foo> types
Bugs fixed
Bugs fixed
- Collector #1507: Zope now binds again to all available IP addresses if
ip-address is unset
- Use 'del' instead of 'list.remove()' in
- Use 'del' instead of 'list.remove()' in
Catalog.delColumn(). There can be only one column with the
Catalog.delColumn(). There can be only one column with the
...
...
lib/python/ZServer/datatypes.py
View file @
4fd8ebcd
...
@@ -41,7 +41,6 @@ def get_default_host_info():
...
@@ -41,7 +41,6 @@ def get_default_host_info():
if
os
.
name
==
'posix'
and
'localhost'
in
hostname
.
lower
():
if
os
.
name
==
'posix'
and
'localhost'
in
hostname
.
lower
():
hostname
=
''
hostname
=
''
_default_host_info
=
hostname
,
ip
_default_host_info
=
hostname
,
ip
return
_default_host_info
return
_default_host_info
...
@@ -59,6 +58,9 @@ class ServerFactory:
...
@@ -59,6 +58,9 @@ class ServerFactory:
if
defaulthost
:
if
defaulthost
:
hostname
=
defaulthost
hostname
=
defaulthost
ip
=
socket
.
gethostbyname
(
hostname
)
ip
=
socket
.
gethostbyname
(
hostname
)
elif
defaulthost
is
''
:
hostname
=
''
ip
=
'127.0.0.1'
else
:
else
:
hostname
,
ip
=
get_default_host_info
()
hostname
,
ip
=
get_default_host_info
()
if
not
self
.
host
:
if
not
self
.
host
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment