Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/spdlog/details/udp_client.h')
-rw-r--r--include/spdlog/details/udp_client.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/spdlog/details/udp_client.h b/include/spdlog/details/udp_client.h
index 7a8ee9cc..2db5b89e 100644
--- a/include/spdlog/details/udp_client.h
+++ b/include/spdlog/details/udp_client.h
@@ -31,7 +31,6 @@ class udp_client
int socket_ = -1;
struct sockaddr_in sockAddr_;
-
void cleanup_()
{
if (socket_ != -1)
@@ -59,8 +58,9 @@ public:
sockAddr_.sin_family = AF_INET;
sockAddr_.sin_port = htons(port);
-
- if (::inet_aton(host.c_str(), &sockAddr_.sin_addr) == 0) {
+
+ if (::inet_aton(host.c_str(), &sockAddr_.sin_addr) == 0)
+ {
cleanup_();
throw_spdlog_ex("error: Invalid address!");
}
@@ -85,7 +85,7 @@ public:
ssize_t toslen = 0;
socklen_t tolen = sizeof(struct sockaddr);
if ((toslen = ::sendto(socket_, data, n_bytes, 0, (struct sockaddr *)&sockAddr_, tolen)) == -1)
- {
+ {
throw_spdlog_ex("sendto(2) failed", errno);
}
}