Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Revision:
149:39d1ba392f4b
Parent:
145:206bf0d073c7
Child:
158:3adf725c0804
diff -r 5489d36986e5 -r 39d1ba392f4b tcp/tcp.c
--- a/tcp/tcp.c	Mon May 27 10:12:33 2019 +0000
+++ b/tcp/tcp.c	Wed Jun 19 15:36:18 2019 +0000
@@ -1,6 +1,15 @@
 #include <stdbool.h>
 #include <stdint.h>
 
+#include "tcb.h"
+#include "tls.h"
+
 bool TcpTrace = false;
 
+void TcpInit()
+{
+    TcbInit();
+    TlsInit();
+}
 
+