A stack which works with or without an Mbed os library. Provides IPv4 or IPv6 with a full 1500 byte buffer.

Dependents:   oldheating gps motorhome heating

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tcp.c Source File

tcp.c

00001 #include <stdbool.h>
00002 #include <stdint.h>
00003 
00004 #include "tcb.h"
00005 #include "tls.h"
00006 
00007 bool TcpTrace = false;
00008 
00009 void TcpMain()
00010 {
00011 }
00012 void TcpInit()
00013 {
00014     TcbInit();
00015 }
00016 
00017