| 653 | } |
| 654 | |
| 655 | Result GetHostname(char* hostname, int hostname_length) |
| 656 | { |
| 657 | int r = gethostname(hostname, hostname_length); |
| 658 | if (hostname_length > 0) |
| 659 | hostname[hostname_length - 1] = '\0'; |
| 660 | return r == 0 ? RESULT_OK : NATIVETORESULT(DM_SOCKET_ERRNO); |
| 661 | } |
| 662 | |
| 663 | Result GetLocalAddress(Address* address) |
| 664 | { |
no outgoing calls
no test coverage detected