Include room for SocketAddrV6 to serialize scope id
https://github.com/rust-lang/rust/pull/77426
This commit is contained in:
parent
be7d0e7eb2
commit
2b504099e4
@ -753,10 +753,10 @@ impl Serialize for net::SocketAddrV6 {
|
|||||||
S: Serializer,
|
S: Serializer,
|
||||||
{
|
{
|
||||||
if serializer.is_human_readable() {
|
if serializer.is_human_readable() {
|
||||||
const MAX_LEN: usize = 47;
|
const MAX_LEN: usize = 58;
|
||||||
debug_assert_eq!(
|
debug_assert_eq!(
|
||||||
MAX_LEN,
|
MAX_LEN,
|
||||||
"[1001:1002:1003:1004:1005:1006:1007:1008]:65000".len()
|
"[1001:1002:1003:1004:1005:1006:1007:1008%4294967295]:65000".len()
|
||||||
);
|
);
|
||||||
serialize_display_bounded_length!(self, MAX_LEN, serializer)
|
serialize_display_bounded_length!(self, MAX_LEN, serializer)
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user