Home
last modified time | relevance | path

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

/Linux-v5.15/samples/bpf/
Dcookie_uid_helper_example.c215 struct sockaddr_in si_other = {0}; in udp_client() local
224 socklen_t slen = sizeof(si_other); in udp_client()
229 si_other.sin_family = AF_INET; in udp_client()
230 si_other.sin_port = htons(PORT); in udp_client()
231 if (inet_aton("127.0.0.1", &si_other.sin_addr) == 0) in udp_client()
233 if (bind(s_rcv, (struct sockaddr *)&si_other, sizeof(si_other)) == -1) in udp_client()
246 (struct sockaddr *)&si_other, slen); in udp_client()
255 res = memcmp(&(si_other.sin_addr), &(si_me.sin_addr), in udp_client()