@@ -149,7 +149,8 @@ impl SocketAddr {
149
149
/// assert_eq!(socket.ip(), IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)));
150
150
/// ```
151
151
#[ stable( feature = "ip_addr" , since = "1.7.0" ) ]
152
- pub fn ip ( & self ) -> IpAddr {
152
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
153
+ pub const fn ip ( & self ) -> IpAddr {
153
154
match * self {
154
155
SocketAddr :: V4 ( ref a) => IpAddr :: V4 ( * a. ip ( ) ) ,
155
156
SocketAddr :: V6 ( ref a) => IpAddr :: V6 ( * a. ip ( ) ) ,
@@ -188,7 +189,8 @@ impl SocketAddr {
188
189
/// assert_eq!(socket.port(), 8080);
189
190
/// ```
190
191
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
191
- pub fn port ( & self ) -> u16 {
192
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
193
+ pub const fn port ( & self ) -> u16 {
192
194
match * self {
193
195
SocketAddr :: V4 ( ref a) => a. port ( ) ,
194
196
SocketAddr :: V6 ( ref a) => a. port ( ) ,
@@ -230,7 +232,8 @@ impl SocketAddr {
230
232
/// assert_eq!(socket.is_ipv6(), false);
231
233
/// ```
232
234
#[ stable( feature = "sockaddr_checker" , since = "1.16.0" ) ]
233
- pub fn is_ipv4 ( & self ) -> bool {
235
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
236
+ pub const fn is_ipv4 ( & self ) -> bool {
234
237
matches ! ( * self , SocketAddr :: V4 ( _) )
235
238
}
236
239
@@ -250,7 +253,8 @@ impl SocketAddr {
250
253
/// assert_eq!(socket.is_ipv6(), true);
251
254
/// ```
252
255
#[ stable( feature = "sockaddr_checker" , since = "1.16.0" ) ]
253
- pub fn is_ipv6 ( & self ) -> bool {
256
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
257
+ pub const fn is_ipv6 ( & self ) -> bool {
254
258
matches ! ( * self , SocketAddr :: V6 ( _) )
255
259
}
256
260
}
@@ -290,7 +294,8 @@ impl SocketAddrV4 {
290
294
/// assert_eq!(socket.ip(), &Ipv4Addr::new(127, 0, 0, 1));
291
295
/// ```
292
296
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
293
- pub fn ip ( & self ) -> & Ipv4Addr {
297
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
298
+ pub const fn ip ( & self ) -> & Ipv4Addr {
294
299
// SAFETY: `Ipv4Addr` is `#[repr(C)] struct { _: in_addr; }`.
295
300
// It is safe to cast from `&in_addr` to `&Ipv4Addr`.
296
301
unsafe { & * ( & self . inner . sin_addr as * const c:: in_addr as * const Ipv4Addr ) }
@@ -323,7 +328,8 @@ impl SocketAddrV4 {
323
328
/// assert_eq!(socket.port(), 8080);
324
329
/// ```
325
330
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
326
- pub fn port ( & self ) -> u16 {
331
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
332
+ pub const fn port ( & self ) -> u16 {
327
333
ntohs ( self . inner . sin_port )
328
334
}
329
335
@@ -386,7 +392,8 @@ impl SocketAddrV6 {
386
392
/// assert_eq!(socket.ip(), &Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
387
393
/// ```
388
394
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
389
- pub fn ip ( & self ) -> & Ipv6Addr {
395
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
396
+ pub const fn ip ( & self ) -> & Ipv6Addr {
390
397
unsafe { & * ( & self . inner . sin6_addr as * const c:: in6_addr as * const Ipv6Addr ) }
391
398
}
392
399
@@ -417,7 +424,8 @@ impl SocketAddrV6 {
417
424
/// assert_eq!(socket.port(), 8080);
418
425
/// ```
419
426
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
420
- pub fn port ( & self ) -> u16 {
427
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
428
+ pub const fn port ( & self ) -> u16 {
421
429
ntohs ( self . inner . sin6_port )
422
430
}
423
431
@@ -458,7 +466,8 @@ impl SocketAddrV6 {
458
466
/// assert_eq!(socket.flowinfo(), 10);
459
467
/// ```
460
468
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
461
- pub fn flowinfo ( & self ) -> u32 {
469
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
470
+ pub const fn flowinfo ( & self ) -> u32 {
462
471
self . inner . sin6_flowinfo
463
472
}
464
473
@@ -496,7 +505,8 @@ impl SocketAddrV6 {
496
505
/// assert_eq!(socket.scope_id(), 78);
497
506
/// ```
498
507
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
499
- pub fn scope_id ( & self ) -> u32 {
508
+ #[ rustc_const_unstable( feature = "const_socketaddr" , issue = "82485" ) ]
509
+ pub const fn scope_id ( & self ) -> u32 {
500
510
self . inner . sin6_scope_id
501
511
}
502
512
0 commit comments