| 820 | } |
| 821 | |
| 822 | sa_family_t CService::GetSAFamily() const |
| 823 | { |
| 824 | switch (m_net) { |
| 825 | case NET_IPV4: |
| 826 | return AF_INET; |
| 827 | case NET_IPV6: |
| 828 | case NET_CJDNS: |
| 829 | return AF_INET6; |
| 830 | default: |
| 831 | return AF_UNSPEC; |
| 832 | } |
| 833 | } |
| 834 | |
| 835 | uint16_t CService::GetPort() const |
| 836 | { |
no outgoing calls
no test coverage detected