summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 87b8f17)
raw | patch | inline | side by side (parent: 87b8f17)
author | Sebastian Harl <sh@tokkee.org> | |
Sun, 1 Feb 2015 11:00:12 +0000 (12:00 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sun, 1 Feb 2015 14:00:37 +0000 (15:00 +0100) |
src/client/sock.c | patch | blob | history |
diff --git a/src/client/sock.c b/src/client/sock.c
index ef4e007bc0b0bbec9ffaa65fe81ba5dd47d9bc58..838dd95d880debea45d0549c5fde06be776308c1 100644 (file)
--- a/src/client/sock.c
+++ b/src/client/sock.c
client->fd = socket(AF_UNIX, SOCK_STREAM, /* protocol = */ 0);
if (client->fd < 0) {
char errbuf[1024];
- sdb_log(SDB_LOG_ERR, "Failed to open socket: %s",
+ sdb_log(SDB_LOG_ERR, "client: Failed to open socket: %s",
sdb_strerror(errno, errbuf, sizeof(errbuf)));
return -1;
}
if (connect(client->fd, (struct sockaddr *)&sa, sizeof(sa))) {
char errbuf[1024];
sdb_client_close(client);
- sdb_log(SDB_LOG_ERR, "Failed to connect to '%s': %s",
+ sdb_log(SDB_LOG_ERR, "client: Failed to connect to '%s': %s",
sa.sun_path, sdb_strerror(errno, errbuf, sizeof(errbuf)));
return -1;
}
int status;
if ((status = sdb_resolve(SDB_NET_TCP, address, &ai_list))) {
- sdb_log(SDB_LOG_ERR, "Failed to resolve '%s': %s",
+ sdb_log(SDB_LOG_ERR, "client: Failed to resolve '%s': %s",
address, gai_strerror(status));
return -1;
}
client->fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
if (client->fd < 0) {
char errbuf[1024];
- sdb_log(SDB_LOG_ERR, "Failed to open socket: %s",
+ sdb_log(SDB_LOG_ERR, "client: Failed to open socket: %s",
sdb_strerror(errno, errbuf, sizeof(errbuf)));
continue;
}
sdb_client_close(client);
getnameinfo(ai->ai_addr, ai->ai_addrlen, h, sizeof(h),
p, sizeof(p), NI_NUMERICHOST | NI_NUMERICSERV);
- sdb_log(SDB_LOG_ERR, "Failed to connect to '%s:%s': %s",
+ sdb_log(SDB_LOG_ERR, "client: Failed to connect to '%s:%s': %s",
h, p, sdb_strerror(errno, errbuf, sizeof(errbuf)));
continue;
}
peer = sdb_ssl_session_peer(client->ssl_session);
if ((! peer) || strcasecmp(peer, host)) {
/* TODO: also check alt-name */
- sdb_log(SDB_LOG_ERR, "Failed to connect to '%s': "
+ sdb_log(SDB_LOG_ERR, "client: Failed to connect to '%s': "
"peer name '%s' does not match host address",
address, peer);
sdb_client_close(client);
client = malloc(sizeof(*client));
if (! client) {
- sdb_log(SDB_LOG_ERR, "Out of memory");
+ sdb_log(SDB_LOG_ERR, "client: Out of memory");
return NULL;
}
memset(client, 0, sizeof(*client));
client->address = strdup(address);
if (! client->address) {
sdb_client_destroy(client);
- sdb_log(SDB_LOG_ERR, "Out of memory");
+ sdb_log(SDB_LOG_ERR, "client: Out of memory");
return NULL;
}
}
if (status < 0) {
- sdb_log(SDB_LOG_ERR, "%s", sdb_strbuf_string(buf));
+ sdb_log(SDB_LOG_ERR, "client: %s", sdb_strbuf_string(buf));
sdb_client_close(client);
sdb_strbuf_destroy(buf);
return (int)status;
}
if (client->eof)
- sdb_log(SDB_LOG_ERR, "Encountered end-of-file while waiting "
+ sdb_log(SDB_LOG_ERR, "client: Encountered end-of-file while waiting "
"for server response");
if (rstatus == SDB_CONNECTION_ERROR) {
- sdb_log(SDB_LOG_ERR, "Access denied for user '%s': %s",
+ sdb_log(SDB_LOG_ERR, "client: Access denied for user '%s': %s",
username, sdb_strbuf_string(buf));
status = -((int)rstatus);
}
else if (rstatus != SDB_CONNECTION_OK) {
- sdb_log(SDB_LOG_ERR, "Received unsupported authentication request "
- "(status %d) during startup", (int)rstatus);
+ sdb_log(SDB_LOG_ERR, "client: Received unsupported authentication "
+ "request (status %d) during startup", (int)rstatus);
status = -((int)rstatus);
}
if (rcode == SDB_CONNECTION_LOG) {
uint32_t prio = 0;
if (sdb_proto_unmarshal_int32(SDB_STRBUF_STR(buf), &prio) < 0) {
- sdb_log(SDB_LOG_WARNING, "Received a LOG message "
+ sdb_log(SDB_LOG_WARNING, "client: Received a LOG message "
"with invalid or missing priority");
prio = (uint32_t)SDB_LOG_ERR;
}
- sdb_log((int)prio, "%s", sdb_strbuf_string(buf) + offset);
+ sdb_log((int)prio, "client: %s", sdb_strbuf_string(buf) + offset);
sdb_strbuf_skip(buf, offset, sdb_strbuf_len(buf) - offset);
continue;
}