local_ip and local_host in connection object returns remote_ip and remote_host
instead
--------------------------------------------------------------------------------------
Key: MODPYTHON-62
URL: http://issues.apache.org/jira/browse/MODPYTHON-62
Project: mod_python
Type: Bug
Components: core
Versions: 3.1.4
Reporter: Deron Meranda
It appears as if the source file src/connobject.c is incorrect.
connobject.c:261: {"local_ip", T_STRING, OFF(remote_ip),
RO},
connobject.c:262: {"local_host", T_STRING, OFF(remote_host),
RO},
should instead be
connobject.c:261: {"local_ip", T_STRING, OFF(local_ip),
RO},
connobject.c:262: {"local_host", T_STRING, OFF(local_host),
RO},
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira