2 messages in org.python.python-bugs-list[ python-Bugs-924294 ] IPV6 not corre...
FromSent OnAttachments
SourceForge.netMar 26, 2004 7:07 pm 
SourceForge.netMar 29, 2004 5:20 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[ python-Bugs-924294 ] IPV6 not correctly ifdef'd in socketmodule.cActions...
From:SourceForge.net (nore@sourceforge.net)
Date:Mar 26, 2004 7:07:27 pm
List:org.python.python-bugs-list

Bugs item #924294, was opened at 2004-03-26 19:07 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=924294&group_id=5470

Category: Build Group: Python 2.3 Status: Open Resolution: None Priority: 5 Submitted By: David Meleedy (dmeleedy) Assigned to: Nobody/Anonymous (nobody) Summary: IPV6 not correctly ifdef'd in socketmodule.c

Initial Comment: buckaroo-75: diff -c3 socketmodule.c-dist socketmodule.c *** socketmodule.c-dist Fri Mar 26 18:51:52 2004 --- socketmodule.c Fri Mar 26 18:52:47 2004 *************** *** 2971,2977 **** return NULL; }

! #ifndef ENABLE_IPV6 if(af == AF_INET6) { PyErr_SetString(socket_error, "can't use AF_INET6, IPv6 is disabled"); --- 2971,2977 ---- return NULL; }

! #ifdef ENABLE_IPV6 if(af == AF_INET6) { PyErr_SetString(socket_error, "can't use AF_INET6, IPv6 is disabled");

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