Changes between Initial Version and Version 1 of Ticket #19296
- Timestamp:
- Dec 17, 2024, 2:33:20 PM (24 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19296 – Description
initial v1 1 2 1 While the BNetworkAddress object properly detects an empty IPv4 address. (0.0.0.0 .IsEmpty() == true), it appears BNetworkAddress may not properly detect an empty IPv6 address. 3 2 … … 27 26 }}} 28 27 28 {{{ 29 ./a.out 30 :: Address Is Empty: true 31 dead::beef Address Is Empty: true 32 0.0.0.0 Address Is Empty: true 33 10.0.0.0 Address Is Empty: false 34 }}} 29 35 30 Setting :: as the IPv6 address gets IsEmpty true. Setting 100::1 as the IPv6 address 36 37 :: should be Empty. dead::beef should not be.