forked from dan/liminix
improve logtee socket connection warning
* print it less often * to the correct stream (stdout not stderr)
This commit is contained in:
parent
9e5f2d663d
commit
5771108fed
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
int open_shipper_socket(char *pathname) {
|
int open_shipper_socket(char *pathname) {
|
||||||
int fd;
|
int fd;
|
||||||
|
static int fail_count = 0;
|
||||||
|
|
||||||
struct sockaddr_un sa = {
|
struct sockaddr_un sa = {
|
||||||
.sun_family = AF_LOCAL
|
.sun_family = AF_LOCAL
|
||||||
@ -23,7 +24,12 @@ int open_shipper_socket(char *pathname) {
|
|||||||
fd = socket(AF_LOCAL, SOCK_STREAM, 0);
|
fd = socket(AF_LOCAL, SOCK_STREAM, 0);
|
||||||
if(fd >= 0) {
|
if(fd >= 0) {
|
||||||
if(connect(fd, (struct sockaddr *) &sa, sizeof sa)) {
|
if(connect(fd, (struct sockaddr *) &sa, sizeof sa)) {
|
||||||
error(0, errno, "connect socket \"%s\"", pathname);
|
if((fail_count % 30) == 0)
|
||||||
|
printf("logtee: cannot connect socket \"%s\": %s\n",
|
||||||
|
pathname,
|
||||||
|
strerror(errno));
|
||||||
|
|
||||||
|
fail_count++;
|
||||||
close(fd);
|
close(fd);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user