Commit 3610f554 authored by Max Kellermann's avatar Max Kellermann

client/Write: add `noexcept`

parent 6db84852
...@@ -124,12 +124,12 @@ public: ...@@ -124,12 +124,12 @@ public:
void Close() noexcept; void Close() noexcept;
void SetExpired() noexcept; void SetExpired() noexcept;
bool Write(const void *data, size_t length); bool Write(const void *data, size_t length) noexcept;
/** /**
* Write a null-terminated string. * Write a null-terminated string.
*/ */
bool Write(const char *data); bool Write(const char *data) noexcept;
/** /**
* returns the uid of the client process, or a negative value * returns the uid of the client process, or a negative value
......
...@@ -22,14 +22,14 @@ ...@@ -22,14 +22,14 @@
#include <string.h> #include <string.h>
bool bool
Client::Write(const void *data, size_t length) Client::Write(const void *data, size_t length) noexcept
{ {
/* if the client is going to be closed, do nothing */ /* if the client is going to be closed, do nothing */
return !IsExpired() && FullyBufferedSocket::Write(data, length); return !IsExpired() && FullyBufferedSocket::Write(data, length);
} }
bool bool
Client::Write(const char *data) Client::Write(const char *data) noexcept
{ {
return Write(data, strlen(data)); return Write(data, strlen(data));
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment