about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-23 18:03:53 -0400
committerJune McEnroe <june@causal.agency>2019-10-23 18:03:53 -0400
commitf005d2950d8286475fc804e0d0e0cfbf99014323 (patch)
tree12814af3e79e7a07975ec260d95a500acdd5d5a4
parentImplement some amount of client connection (diff)
downloadpounce-f005d2950d8286475fc804e0d0e0cfbf99014323.tar.gz
pounce-f005d2950d8286475fc804e0d0e0cfbf99014323.zip
Send to server if client has no needs
Diffstat (limited to '')
-rw-r--r--client.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/client.c b/client.c
index 0bba8d3..74d1e5c 100644
--- a/client.c
+++ b/client.c
@@ -158,9 +158,15 @@ void clientRecv(struct Client *client) {
 	for (;;) {
 		crlf = memmem(line, &client->buf[client->len] - line, "\r\n", 2);
 		if (!crlf) break;
-		crlf[0] = '\0';
-		if (verbose) fprintf(stderr, "\x1B[33m%s\x1B[m\n", line);
-		clientParse(client, line);
+		if (verbose) {
+			fprintf(stderr, "\x1B[33m%.*s\x1B[m\n", (int)(crlf - line), line);
+		}
+		if (client->need) {
+			crlf[0] = '\0';
+			clientParse(client, line);
+		} else {
+			serverSend(line, crlf + 2 - line);
+		}
 		line = crlf + 2;
 	}
 	client->len -= line - client->buf;
7d5db20b822fb87e2f42027cde8b38bb36&follow=1'>Fix resetting restart interval with explicit restartJune McEnroe 2020-08-15Add reset interval after which restart interval is resetJune McEnroe 2020-08-15Log when service name pattern doesn't matchJune McEnroe 2020-08-15Add FreeBSD rc scriptJune McEnroe 2020-08-15Call setproctitle with number of servicesJune McEnroe 2020-08-15Rename project to catsitJune McEnroe 2020-08-15Use only LOG_NOTICE and LOG_WARNINGJune McEnroe 2020-08-15Make log messages consistentJune McEnroe 2020-08-15Remove closelog callJune McEnroe 2020-08-15Implement service statusJune McEnroe 2020-08-15Parse control commandsJune McEnroe 2020-08-15Read service pipesJune McEnroe 2020-08-15Implement non-blocking line-buffered readingJune McEnroe 2020-08-15Generate tags fileJune McEnroe 2020-08-15Just use CLOCK_MONOTONIC and clean up includesJune McEnroe 2020-08-15Reap childrenJune McEnroe 2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe 2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe 2020-08-14Switch to timespec for timeoutsJune McEnroe 2020-08-14Implement serviceStartJune McEnroe 2020-08-14Flesh out Service structJune McEnroe 2020-08-14Build environment for servicesJune McEnroe 2020-08-14Implement spawntab parsingJune McEnroe 2020-08-14Open syslog, daemonize, write PIDJune McEnroe 2020-08-14Implement user and group lookupJune McEnroe 2020-08-14Add install targetJune McEnroe 2020-08-14Add spawnd skeletonJune McEnroe