Forráskód Böngészése

some preparations for v2.1.0 release

Simon Goldschmidt 7 éve
szülő
commit
effdeef2fe
2 módosított fájl, 11 hozzáadás és 5 törlés
  1. 1 1
      FEATURES
  2. 10 4
      README

+ 1 - 1
FEATURES

@@ -3,7 +3,7 @@ lwIP is a small independent implementation of the TCP/IP protocol suite targeted
 The focus of the lwIP TCP/IP implementation is to reduce resource usage while still having a full scale TCP. This makes lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.
 The focus of the lwIP TCP/IP implementation is to reduce resource usage while still having a full scale TCP. This makes lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.
 
 
 Main features include:
 Main features include:
-- Protocols: IP, IPv6, ICMP, ND, MLD, UDP, TCP, IGMP, ARP, PPPoS, PPPoE, 6LowPAN (via IEEE 802.15.4, BEL or ZEP; since v2.1.0)
+- Protocols: IP, IPv6, ICMP, ND, MLD, UDP, TCP, IGMP, ARP, PPPoS, PPPoE, 6LowPAN (via IEEE 802.15.4, BLE or ZEP; since v2.1.0)
 - DHCP client, stateless DHCPv6 (since v2.1.0), DNS client (incl. mDNS hostname resolver), AutoIP/APIPA (Zeroconf), SNMP agent (v1, v2c, v3 (since v2.1.0), private MIB support & MIB compiler)
 - DHCP client, stateless DHCPv6 (since v2.1.0), DNS client (incl. mDNS hostname resolver), AutoIP/APIPA (Zeroconf), SNMP agent (v1, v2c, v3 (since v2.1.0), private MIB support & MIB compiler)
 - APIs: specialized APIs for enhanced performance & zero copy, optional Berkeley-alike socket API
 - APIs: specialized APIs for enhanced performance & zero copy, optional Berkeley-alike socket API
 - Extended features: IP forwarding over multiple network interfaces
 - Extended features: IP forwarding over multiple network interfaces

+ 10 - 4
README

@@ -22,22 +22,28 @@ FEATURES
   * ND (Neighbor discovery and stateless address autoconfiguration for IPv6).
   * ND (Neighbor discovery and stateless address autoconfiguration for IPv6).
     Aims to be compliant with RFC 4861 (Neighbor discovery) and RFC 4862
     Aims to be compliant with RFC 4861 (Neighbor discovery) and RFC 4862
     (Address autoconfiguration)
     (Address autoconfiguration)
+  * DHCP, AutoIP/APIPA (Zeroconf) and (stateless) DHCPv6
   * UDP (User Datagram Protocol) including experimental UDP-lite extensions
   * UDP (User Datagram Protocol) including experimental UDP-lite extensions
   * TCP (Transmission Control Protocol) with congestion control, RTT estimation
   * TCP (Transmission Control Protocol) with congestion control, RTT estimation
-    and fast recovery/fast retransmit
+    fast recovery/fast retransmit and sending SACKs
   * raw/native API for enhanced performance
   * raw/native API for enhanced performance
   * Optional Berkeley-like socket API
   * Optional Berkeley-like socket API
-  * DNS (Domain names resolver)
+  * Optional layered TCP ("altcp") for nearly transparent TLS for any TCP-based
+    protocol, ported to mbedTLS)
+  * PPPoS and PPPoE (Point-to-point protocol over Serial/Ethernet)
+  * DNS (Domain name resolver incl. mDNS)
+  * 6LoWPAN (via IEEE 802.15.4, BLE or ZEP)
 
 
 
 
 APPLICATIONS
 APPLICATIONS
 
 
-  * HTTP server with SSI and CGI
-  * SNMPv2c agent with MIB compiler (Simple Network Management Protocol)
+  * HTTP server with SSI and CGI (HTTPS via altcp)
+  * SNMPv2c agent with MIB compiler (Simple Network Management Protocol), v3 via altcp
   * SNTP (Simple network time protocol)
   * SNTP (Simple network time protocol)
   * NetBIOS name service responder
   * NetBIOS name service responder
   * MDNS (Multicast DNS) responder
   * MDNS (Multicast DNS) responder
   * iPerf server implementation
   * iPerf server implementation
+  * MQTT client (TLS support via altcp)
 
 
 
 
 LICENSE
 LICENSE