()
| 462 | } |
| 463 | |
| 464 | func (s *Socket) BindAddr() (netip.AddrPort, syscall.Errno, error) { |
| 465 | if !s.FD.IncRef() { |
| 466 | return netip.AddrPort{}, unix.EBADF, nil |
| 467 | } |
| 468 | defer s.FD.DecRef() |
| 469 | |
| 470 | return s.Inode.state.Load().getRemoteBindAddr() |
| 471 | } |
| 472 | |
| 473 | func (s *Socket) PeerAddr() (netip.AddrPort, syscall.Errno, error) { |
| 474 | if !s.FD.IncRef() { |
no test coverage detected