Home
last modified time | relevance | path

Searched refs:sunD (Results 1 – 1 of 1) sorted by relevance

/minix/minix/tests/
H A Dtest90.c3016 struct sockaddr_un sunA, sunB, sunC, sunD; in test90q() local
3058 len = sizeof(sunD); in test90q()
3059 if (recvfrom(fd3, buf, 1, 0, (struct sockaddr *)&sunD, &len) != 1) in test90q()
3062 check_addr(&sunD, len, SOCK_PATH_A); in test90q()
3068 memset(&sunD, 0, sizeof(sunD)); in test90q()
3069 sunD.sun_family = AF_UNIX; in test90q()
3070 strlcpy(sunD.sun_path, SOCK_PATH_D, sizeof(sunD.sun_path)); in test90q()
3073 if (connect(fd3, (struct sockaddr *)&sunD, sizeof(sunD)) != -1) e(0); in test90q()