Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk GRASP
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef STUBS_LWIP_PROT_TCP_H #define STUBS_LWIP_PROT_TCP_H #include <stdint.h> #define TCP_HLEN 20 struct tcp_hdr { uint16_t src; uint16_t dest; }; #endif