client/Write: add `noexcept`

This commit is contained in:
Max Kellermann 2019-04-03 21:37:38 +02:00
parent 6db84852ae
commit 3610f55479
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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));
} }