Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update create_webserver.hpp
Correct for formatting issues highlighted by cpplint.
  • Loading branch information
oberdorc authored Mar 13, 2024
commit 454447f60b5f7a51fd1bd8570d63601b7122708e
5 changes: 3 additions & 2 deletions src/httpserver/create_webserver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <functional>
#include <limits>
#include <string>
#include <utility>

#include "httpserver/http_response.hpp"
#include "httpserver/http_utils.hpp"
Expand Down Expand Up @@ -216,10 +217,10 @@ class create_webserver {
}

create_webserver& psk_cred_handler(psk_cred_handler_callback handler) {
_psk_cred_handler = std::move(handler);
_psk_cred_handler = std::move(handler);
return *this;
}

create_webserver& https_priorities(const std::string& https_priorities) {
_https_priorities = https_priorities;
return *this;
Expand Down