The smallest TCP/IP stack on the planet
.forgejo/workflows | ||
src | ||
.gitignore | ||
config.h | ||
core.md | ||
femtotcp.h | ||
LICENSE | ||
Makefile | ||
README.md |
FemtoTCP
The smallest TCP/IP stack on the planet
Description and project goals
FemtoTCP is a TCP/IP stack with no dynamic memory allocations, designed to be used in resource-constrained embedded systems.
Endpoint only mode is supported, which means that femtotcp can be used to establish network connections but it does not route traffic between different network interfaces.
A single network interface can be associated with the device.
Features supported
- ARP (RFC 826)
- IPv4 (RFC 791)
- ICMP (RFC 792): only ping replies
- DHCP (RFC 2131): client only
- UDP (RFC 768): unicast only
- TCP (RFC 793)
- TCP options supported: Timestamps, Maximum Segment Size
- BSD-like, non blocking socket API, with custom callbacks
- No dynamic memory allocation
Copyright and License
FemtoTCP is licensed under the GPLv3 license. See the LICENSE file for details. Copyright (c) 2024 Daniele Lacamera. Some rights reserved.