![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tests/sockets/ |
Upload File : |
#include <arpa/inet.h> #include <sys/socket.h> #include <assert.h> #include <errno.h> #include <netdb.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #ifdef __EMSCRIPTEN__ #include <emscripten.h> #endif int main() { char str[INET_ADDRSTRLEN]; struct hostent *host = NULL; struct hostent hostData; struct in_addr addr; const char *res; char buffer[2048]; int err; // gethostbyname_r calls the same stuff as gethostbyname, so we'll test the // more complicated one. // resolve the hostname to an actual address gethostbyname_r("slashdot.org", &hostData, buffer, sizeof(buffer), &host, &err); assert(host->h_addrtype == AF_INET); assert(host->h_length == sizeof(uint32_t)); // convert the raw address to a string char **raw_addr_list = host->h_addr_list; int *raw_addr = (int*)*raw_addr_list; res = inet_ntop(host->h_addrtype, raw_addr, str, INET_ADDRSTRLEN); assert(res); // convert the string to an in_addr structure err = inet_pton(AF_INET, str, &addr); assert(err == 1); // do a reverse lookup on the ip address struct hostent *host1 = gethostbyaddr(&addr, sizeof(addr), host->h_addrtype); assert(strstr(host1->h_name, "slashdot.org")); puts("success"); return EXIT_SUCCESS; }