Skip to content

Commit

Permalink
logproto: Remove proxied-text-server
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Becker <beckeralex@protonmail.com>
  • Loading branch information
alexb271 committed Sep 21, 2023
1 parent b17e32a commit f042859
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 975 deletions.
2 changes: 0 additions & 2 deletions lib/logproto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ set(LOGPROTO_HEADERS
logproto/logproto-server.h
logproto/logproto-text-client.h
logproto/logproto-text-server.h
logproto/logproto-proxied-text-server.h
PARENT_SCOPE)

set(LOGPROTO_SOURCES
Expand All @@ -26,7 +25,6 @@ set(LOGPROTO_SOURCES
logproto/logproto-server.c
logproto/logproto-text-client.c
logproto/logproto-text-server.c
logproto/logproto-proxied-text-server.c
PARENT_SCOPE)

add_test_subdirectory(tests)
2 changes: 0 additions & 2 deletions lib/logproto/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ logprotoinclude_HEADERS = \
lib/logproto/logproto-framed-server.h \
lib/logproto/logproto-text-client.h \
lib/logproto/logproto-text-server.h \
lib/logproto/logproto-proxied-text-server.h \
lib/logproto/logproto-multiline-server.h \
lib/logproto/logproto-record-server.h \
lib/logproto/logproto-builtins.h \
Expand All @@ -26,7 +25,6 @@ logproto_sources = \
lib/logproto/logproto-framed-server.c \
lib/logproto/logproto-text-client.c \
lib/logproto/logproto-text-server.c \
lib/logproto/logproto-proxied-text-server.c \
lib/logproto/logproto-multiline-server.c \
lib/logproto/logproto-record-server.c \
lib/logproto/logproto-builtins.c
Expand Down
5 changes: 0 additions & 5 deletions lib/logproto/logproto-builtins.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include "logproto-dgram-server.h"
#include "logproto-text-client.h"
#include "logproto-text-server.h"
#include "logproto-proxied-text-server.h"
#include "logproto-framed-client.h"
#include "logproto-framed-server.h"
#include "plugin.h"
Expand All @@ -38,8 +37,6 @@ DEFINE_LOG_PROTO_SERVER(log_proto_dgram);
DEFINE_LOG_PROTO_CLIENT(log_proto_text);
DEFINE_LOG_PROTO_SERVER(log_proto_text);
DEFINE_LOG_PROTO_SERVER(log_proto_text_with_nuls);
DEFINE_LOG_PROTO_SERVER(log_proto_proxied_text);
DEFINE_LOG_PROTO_SERVER(log_proto_proxied_text_tls_passthrough, .use_multitransport = TRUE);
DEFINE_LOG_PROTO_CLIENT(log_proto_framed);
DEFINE_LOG_PROTO_SERVER(log_proto_framed);

Expand All @@ -51,8 +48,6 @@ static Plugin framed_server_plugins[] =
LOG_PROTO_CLIENT_PLUGIN(log_proto_text, "text"),
LOG_PROTO_SERVER_PLUGIN(log_proto_text, "text"),
LOG_PROTO_SERVER_PLUGIN(log_proto_text_with_nuls, "text-with-nuls"),
LOG_PROTO_SERVER_PLUGIN(log_proto_proxied_text, "proxied-tcp"),
LOG_PROTO_SERVER_PLUGIN(log_proto_proxied_text_tls_passthrough, "proxied-tls-passthrough"),
LOG_PROTO_CLIENT_PLUGIN(log_proto_framed, "framed"),
LOG_PROTO_SERVER_PLUGIN(log_proto_framed, "framed"),
};
Expand Down
Loading

0 comments on commit f042859

Please sign in to comment.