about summary refs log tree commit diff
path: root/bounce.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2026-03-16 22:43:53 -0400
committerJune McEnroe <june@causal.agency>2026-03-16 22:43:53 -0400
commitd21cef7c9b9785e5f9cc308b49a539e16c1f6b60 (patch)
tree269fadcd971f80913251ce18dd69fe692079a04f /bounce.c
parentHandle 004 RPL_MYINFO with fewer parameters (diff)
downloadpounce-d21cef7c9b9785e5f9cc308b49a539e16c1f6b60.tar.gz
pounce-d21cef7c9b9785e5f9cc308b49a539e16c1f6b60.zip
Remove pounce-palaver and related pieces
Palaver disappeared from the app store and I don't expect it to
return. Disappointing. No need to keep this code around.
Diffstat (limited to 'bounce.c')
-rw-r--r--bounce.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/bounce.c b/bounce.c
index 556c682..76c1cb7 100644
--- a/bounce.c
+++ b/bounce.c
@@ -177,7 +177,6 @@ int main(int argc, char *argv[]) {
 		{ .val = 'C', .name = "local-cert", required_argument },
 		{ .val = 'H', .name = "local-host", required_argument },
 		{ .val = 'K', .name = "local-priv", required_argument },
-		{ .val = 'L', .name = "palaver", no_argument },
 		{ .val = 'N', .name = "no-names", no_argument },
 		{ .val = 'P', .name = "local-port", required_argument },
 		{ .val = 'Q', .name = "queue-interval", required_argument },
@@ -223,7 +222,6 @@ int main(int argc, char *argv[]) {
 			break; case 'H': bindHost = optarg;
 			break; case 'K': snprintf(privPath, sizeof(privPath), "%s", optarg);
 			break; case 'N': stateNoNames = true;
-			break; case 'L': clientCaps |= CapPalaverApp;
 			break; case 'P': bindPort = optarg;
 			break; case 'Q': serverQueueInterval = parseInterval(optarg);
 			break; case 'R': blindReq |= capParse(optarg, NULL);