upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/unit/stubs/lwip/prot/tcp.h
blob: 584137145afd285c752018aa7e0cb20f9014afab (plain)
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