[ python-Bugs-618593 ] Windows binary missing IPv6 support

SourceForge.net noreply at sourceforge.net
Tue Dec 30 06:25:01 EST 2003


Bugs item #618593, was opened at 2002-10-04 17:07
Message generated for change (Comment added) made by loewis
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=618593&group_id=5470

Category: Windows
>Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: Toni Garcia (zolty)
Assigned to: Nobody/Anonymous (nobody)
Summary: Windows binary missing IPv6 support

Initial Comment:
The Windows binary build from www.python.org appears 
to be missing IPv6 support.

The IP configuration in my Windows XP + Service Pack 
1:
C:\Documents and Settings\zolty>ipconfig
Configuración IP de Windows
Adaptador Ethernet Conexión de área local          :
        Sufijo de conexión específica DNS :
        Dirección IP. . . . . . . . . . . : 192.168.0.2
        Máscara de subred . . . . . . . . : 255.255.255.0
        Dirección IP. . . . . . . . . . . : 
fe80::200:1cff:fe04:cae6%4
        Puerta de enlace predeterminada   : 192.168.0.1

Here's an example of a socket with ipv6 protocol/family:

Python 2.2.1 (#34, Apr  9 2002, 19:34:33) [MSC 32 bit 
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more 
information.
>>> import socket
>>> a=socket.socket
(socket.AF_INET6,socket.SOCK_STREAM)
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'module' object has no 
attribute 'AF_INET6'
>>>

----------------------------------------------------------------------

>Comment By: Martin v. Löwis (loewis)
Date: 2003-12-30 12:25

Message:
Logged In: YES 
user_id=21627

Since Python 2.3 is not build with VC.NET either, moving the
target release for this issue to Python 2.4.


----------------------------------------------------------------------

Comment By: Martin v. Löwis (loewis)
Date: 2002-10-05 11:56

Message:
Logged In: YES 
user_id=21627

While your observation is correct, I fail to see the
importance of this problem.

Please understand that what you want is unimplementable with
MSVC6, since it does not provide the necessary header files
and library routines.

IPv6 support is only available if you use CVS Python, and
VC.NET.

I have changed the group to Python 2.3; for Python 2.2, this
would be a new feature, and thus won't be fixed.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=618593&group_id=5470



More information about the Python-bugs-list mailing list