diff options
author | cflip <cflip@cflip.net> | 2022-09-19 21:53:40 -0600 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2022-09-19 21:58:21 -0600 |
commit | 8ce7db9ba907ad4e826c826af898e1864f25f7bb (patch) | |
tree | 813b6862c25277856952f279f0614c0ce10d8053 /src/ClientConnection.h | |
parent | bcea88142033f37bffeca4df096fb7795ebf7020 (diff) |
Add ClangTidy configuration and apply fixes
Diffstat (limited to 'src/ClientConnection.h')
-rw-r--r-- | src/ClientConnection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientConnection.h b/src/ClientConnection.h index 9d5eadd..fee0aeb 100644 --- a/src/ClientConnection.h +++ b/src/ClientConnection.h @@ -7,9 +7,9 @@ class ClientConnection { public: ClientConnection(int socket); - HttpRequest read_request(); + HttpRequest read_request() const; - bool send(const HttpResponse&); + bool send(const HttpResponse&) const; void close_connection(); private: |