Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/sendmail/libmilter/
H A Dlistener.c118 static char *sockpath = NULL; variable
540 sockpath = (char *) malloc(len);
541 if (sockpath != NULL)
542 (void) sm_strlcpy(sockpath, colon, len);
604 removable = sockpath != NULL && in mi_closener()
619 if (sockpath != NULL) in mi_closener()
622 stat(sockpath, &fileinfo) == 0 && in mi_closener()
635 (void) unlink(sockpath); in mi_closener()
636 free(sockpath); in mi_closener()
637 sockpath = NULL; in mi_closener()
/freebsd-13.1/contrib/opie/
H A Dopieauto.c250 char *sockpath; in main() local
302 sockpath = strdup(sun.sun_path); in main()
308 if (unlink(sockpath) && (errno != ENOENT)) in main()
317 if (stat(sockpath, &st) < 0) in main()
364 if (stat(sockpath, &st) < 0) in main()
/freebsd-13.1/sbin/devd/tests/
H A Dclient_test.c72 common_setup(int socktype, const char* sockpath) { in common_setup() argument
78 strlcpy(devd_addr.sun_path, sockpath, sizeof(devd_addr.sun_path)); in common_setup()