diff options
| author | untodesu <kirill@untode.su> | 2025-06-28 01:59:49 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-06-28 01:59:49 +0500 |
| commit | 61e5bcef2629e2d68b805a956a96fff264d4f74d (patch) | |
| tree | bca3a94bac79d34e3c0db57c77604f5a823ecbda /deps/include/spdlog/sinks/udp_sink.h | |
| parent | 88c01588aa0830e219eaa62588839e4d1e2883ce (diff) | |
| download | voxelius-61e5bcef2629e2d68b805a956a96fff264d4f74d.tar.bz2 voxelius-61e5bcef2629e2d68b805a956a96fff264d4f74d.zip | |
Restructure dependencies and update to C++20
- Nuked static_assert from almost everywhere in the project
- Nuked binary dependency support. Might add one later though
- Separated dependency headers into a separate include subdirectory
- Grafted a thirdpartylegalnotices.txt generator from RITEG
- Pushed development snapshot version to 2126 (26th week of 2025)
Diffstat (limited to 'deps/include/spdlog/sinks/udp_sink.h')
| -rw-r--r-- | deps/include/spdlog/sinks/udp_sink.h | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/deps/include/spdlog/sinks/udp_sink.h b/deps/include/spdlog/sinks/udp_sink.h deleted file mode 100644 index a135e62..0000000 --- a/deps/include/spdlog/sinks/udp_sink.h +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
-// Distributed under the MIT License (http://opensource.org/licenses/MIT)
-
-#pragma once
-
-#include <spdlog/common.h>
-#include <spdlog/details/null_mutex.h>
-#include <spdlog/sinks/base_sink.h>
-#ifdef _WIN32
- #include <spdlog/details/udp_client-windows.h>
-#else
- #include <spdlog/details/udp_client.h>
-#endif
-
-#include <chrono>
-#include <functional>
-#include <mutex>
-#include <string>
-
-// Simple udp client sink
-// Sends formatted log via udp
-
-namespace spdlog {
-namespace sinks {
-
-struct udp_sink_config {
- std::string server_host;
- uint16_t server_port;
-
- udp_sink_config(std::string host, uint16_t port)
- : server_host{std::move(host)},
- server_port{port} {}
-};
-
-template <typename Mutex>
-class udp_sink : public spdlog::sinks::base_sink<Mutex> {
-public:
- // host can be hostname or ip address
- explicit udp_sink(udp_sink_config sink_config)
- : client_{sink_config.server_host, sink_config.server_port} {}
-
- ~udp_sink() override = default;
-
-protected:
- void sink_it_(const spdlog::details::log_msg &msg) override {
- spdlog::memory_buf_t formatted;
- spdlog::sinks::base_sink<Mutex>::formatter_->format(msg, formatted);
- client_.send(formatted.data(), formatted.size());
- }
-
- void flush_() override {}
- details::udp_client client_;
-};
-
-using udp_sink_mt = udp_sink<std::mutex>;
-using udp_sink_st = udp_sink<spdlog::details::null_mutex>;
-
-} // namespace sinks
-
-//
-// factory functions
-//
-template <typename Factory = spdlog::synchronous_factory>
-inline std::shared_ptr<logger> udp_logger_mt(const std::string &logger_name,
- sinks::udp_sink_config skin_config) {
- return Factory::template create<sinks::udp_sink_mt>(logger_name, skin_config);
-}
-
-} // namespace spdlog
|
