From be9711d92e222e9ae910ff8bdfac19da79b35d38 Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Thu, 23 Feb 2017 21:43:51 +0100
Subject: [PATCH] Made rest of Microsoft-specific chat optional.
Made code rest of the code in the SLIP driver optional that takes care of the Microsoft-specific CLIENT / SERVER / CLIENTSERVER chat.
---
core/dev/slip.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/core/dev/slip.c b/core/dev/slip.c
index fe5a58046..fc79e22f3 100644
--- a/core/dev/slip.c
+++ b/core/dev/slip.c
@@ -425,11 +425,13 @@ slip_input_byte(unsigned char c)
}
rxbuf[cur_end] = c;
+#ifdef SLIP_CONF_MICROSOFT_CHAT
/* There could be a separate poll routine for this. */
if(c == 'T' && rxbuf[begin] == 'C') {
process_poll(&slip_process);
return 1;
}
+#endif /* SLIP_CONF_MICROSOFT_CHAT */
if(c == SLIP_END) {
/*