ID: 46973
Comment by: birki456 at hotmail dot com
Reported By: alexandre at amen dot fr
Status: Open
Bug Type: Filter related
Operating System: Debian
PHP Version: 5.2.8
Assigned To: felipe
New Comment:
funny thing is, var_dump(filter_var('1fff::a88:85a3::172.31.128.1',
FILTER_VALIDATE_IP,FILTER_FLAG_IPV6));
returns
string(28) "1fff::a88:85a3::172.31.128.1"
which is wrong
i.e. the implementation AS IS allows _two_ '::' in an ipv6 address
Previous Comments:
------------------------------------------------------------------------
[2009-06-08 10:53:27] alexandre at amen dot fr
oups, I'm sorry, I think I missed my copy/paste.
with this :
var_dump(filter_var('1fff:0:a88:85a3::172.31.128.1',FILTER_VALIDATE_IP,FILTER_FLAG_IPV6));
It doesn't work
My apologies for the previous error
------------------------------------------------------------------------
[2009-06-07 16:55:51] [email protected]
You can only have a single :: in an ipv6 address, so this was actually
an invalid address. The bug fix (and bug report) is incorrect.
------------------------------------------------------------------------
[2008-12-31 15:41:05] [email protected]
This bug has been fixed in CVS.
Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
Thank you for the report, and for helping us make PHP better.
------------------------------------------------------------------------
[2008-12-30 14:11:14] alexandre at amen dot fr
Description:
------------
The IPv6 address filter in the filter extension rejects valid IPv6
address notations: '1fff::a88:85a3::172.31.128.1'
Reproduce code:
---------------
var_dump(filter_var('1fff::a88:85a3::172.31.128.1',
FILTER_VALIDATE_IP,FILTER_FLAG_IPV6));
Expected result:
----------------
1fff::a88:85a3::172.31.128.1
Actual result:
--------------
false
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=46973&edit=1