Home | History | Annotate | Download | only in lfs_cleanerd

Lines Matching defs:sun

115 	struct sockaddr_un sun;
119 strcpy(sun.sun_path, LFS_CLEANERD_SOCKFILE);
120 sun.sun_family = AF_LOCAL;
121 sun.sun_len = sizeof(sa_family_t) + 1 + strlen(sun.sun_path);
133 r = sendto(s, &cmd, sizeof(cmd), 0, (struct sockaddr *)&sun,
134 sizeof(sun));
163 struct sockaddr_un sun;
199 strcpy(sun.sun_path, LFS_CLEANERD_SOCKFILE);
200 sun.sun_family = AF_LOCAL;
201 sun.sun_len = sizeof(sa_family_t) + 1 + strlen(sun.sun_path);
202 bind(control_socket, (struct sockaddr *)&sun, sizeof(sun));