Files
RedBear-OS/recipes/tests/netdb/getaddrinfo.c
T
vasilito b9874d0941 feat: USB storage read/write proof + full Red Bear OS tree sync
Add redbear-usb-storage-check in-guest binary that validates USB mass
storage read and write I/O: discovers /scheme/disk/ devices, writes a
test pattern to sector 2048, reads it back, verifies match, restores
original content. Updates test-usb-storage-qemu.sh with write-proof
verification step.

Includes all accumulated Red Bear OS work: kernel patches, relibc
patches, driver infrastructure, DRM/GPU, KDE recipes, firmware,
validation tooling, build system hardening, and documentation.
2026-05-03 23:03:24 +01:00

50 lines
1.2 KiB
C

// Adapted from https://gist.github.com/jirihnidek/bf7a2363e480491da72301b228b35d5d
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <netdb.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include "test_helpers.h"
int main(void) {
struct addrinfo hints, *res;
int errcode;
char addrstr[INET6_ADDRSTRLEN];
void *ptr;
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags |= AI_CANONNAME;
errcode = getaddrinfo("www.redox-os.org", NULL, &hints, &res);
if (errcode != 0) {
perror("getaddrinfo");
exit(EXIT_FAILURE);
}
while (res) {
switch (res->ai_family) {
case AF_INET:
ptr = &((struct sockaddr_in *) res->ai_addr)->sin_addr;
break;
case AF_INET6:
ptr = &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr;
break;
}
inet_ntop(res->ai_family, ptr, addrstr, INET6_ADDRSTRLEN);
printf(
"IPv%d address: %s (%s)\n",
res->ai_family == AF_INET6 ? 6 : 4,
addrstr,
res->ai_canonname
);
res = res->ai_next;
}
}