[pywin32-checkins] /hgroot/pywin32/pywin32: Add a comment about IPV6 client address...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2014-02-14 22:48:29
|
changeset c91327b31256 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=c91327b31256 summary: Add a comment about IPV6 client addresses from bug#664 diffstat: win32/src/win32tsmodule.cpp | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diffs (12 lines): diff -r 31014eee4df2 -r c91327b31256 win32/src/win32tsmodule.cpp --- a/win32/src/win32tsmodule.cpp Fri Feb 14 17:29:03 2014 -0500 +++ b/win32/src/win32tsmodule.cpp Fri Feb 14 17:45:08 2014 -0500 @@ -393,6 +393,8 @@ break; } case WTSClientAddress:{ // @flag WTSClientAddress|Dict containing type and value of client's IP address (None if console session) + // IPV6 addresses may not be returned correctly on Windows versions earlier than Windows Server 2012 + // (see http://sourceforge.net/p/pywin32/bugs/664/ for details) PyObject *obaddress; size_t address_cnt, address_ind; WTS_CLIENT_ADDRESS *wca=(WTS_CLIENT_ADDRESS *)buf; |