diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-09 02:25:46 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:40 +0100 |
commit | f1afeaf50836bf66153cb6cccbfbfdc1e2a5493b (patch) | |
tree | 9b006e190acd372e0f0c9e4bf9c82ce4e5e288a5 /src/utils | |
parent | 40acdf8f4ee0ee4127ffb5f092aaf0376763e7ce (diff) |
Typo and formating.
Change-Id: I864a2fe7f974b0f2bf5000f55c2dc71ecf32a314
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/socket.cpp | 12 | ||||
-rw-r--r-- | src/utils/socket.hpp | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/utils/socket.cpp b/src/utils/socket.cpp index 8badddfc..e75e27f2 100644 --- a/src/utils/socket.cpp +++ b/src/utils/socket.cpp @@ -39,14 +39,14 @@ namespace utils if(socket_ != INVALID_SOCKET) ::close(socket_); } - + /// @brief Test if socket is valid. /// @return true if valid, false otherwise. socket_t::operator bool() const { return socket_ != INVALID_SOCKET; } - + /// @brief Open the socket. /// @param[in] domain Specifies the communications domain in which a socket is to be created. /// @param[in] type Specifies the type of socket to be created. @@ -58,28 +58,28 @@ namespace utils socket_ = ::socket(domain, type, protocol); return socket_; } - + /// @brief Close the socket. /// @return 0 if success. int socket_t::close() { return socket_ != INVALID_SOCKET ? ::close(socket_) : 0; } - + /// @brief Set socket option. /// @return 0 if success. int socket_t::setopt(int level, int optname, const void* optval, socklen_t optlen) { return socket_ != INVALID_SOCKET ? ::setsockopt(socket_, level, optname, optval, optlen) : 0; } - + /// @brief Bind the socket. /// @return 0 if success. int socket_t::bind(const struct sockaddr* addr, socklen_t len) { return socket_ != INVALID_SOCKET ? ::bind(socket_, addr, len) : 0; } - + /// @brief Get the file descriptor. /// @return The socket's file descriptor int socket_t::socket() const diff --git a/src/utils/socket.hpp b/src/utils/socket.hpp index e9ddf074..b42eee6a 100644 --- a/src/utils/socket.hpp +++ b/src/utils/socket.hpp @@ -30,15 +30,15 @@ namespace utils socket_t(const socket_t&) = delete; socket_t(socket_t&&); ~socket_t(); - + explicit operator bool() const; - + int open(int domain, int type, int protocol); int close(); int setopt(int level, int optname, const void* optval, socklen_t optlen); int socket() const; int bind(const struct sockaddr* addr, socklen_t len); - + private: int socket_; }; |