code stringlengths 1 1.05M | repo_name stringlengths 6 83 | path stringlengths 3 242 | language stringclasses 222
values | license stringclasses 20
values | size int64 1 1.05M |
|---|---|---|---|---|---|
#!/usr/bin/perl
open(OUTPUT, "> fsdata.c");
chdir("fs");
open(FILES, "find . -type f |");
while($file = <FILES>) {
# Do not include files in CVS directories nor backup files.
if($file =~ /(CVS|~)/) {
next;
}
chop($file);
open(HEADER, "> /tmp/header") || die $!;
... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/httpd/makefsdata/makefsdata | Perl | unknown | 2,686 |
/**
* makefsdata: Converts a directory structure for use with the lwIP httpd.
*
* This file is part of the lwIP TCP/IP stack.
*
* Author: Jim Pettinato
* Simon Goldschmidt
*
* @todo:
* - take TCP_MSS, LWIP_TCP_TIMESTAMPS and
* PAYLOAD_ALIGN_TYPE/PAYLOAD_ALIGNMENT as arguments
*/
#incl... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/httpd/makefsdata/makefsdata.c | C | unknown | 36,332 |
/**
* @file
* lwIP iPerf server implementation
*/
/**
* @defgroup iperf Iperf server
* @ingroup apps
*
* This is a simple performance measuring server to check your bandwith using
* iPerf2 on a PC as client.
* It is currently a minimal implementation providing an IPv4 TCP server only.
*
* @todo... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/lwiperf/lwiperf.c | C | unknown | 26,123 |
/**
* @file
* MDNS responder implementation
*
* @defgroup mdns MDNS
* @ingroup apps
*
* RFC 6762 - Multicast DNS\n
* RFC 6763 - DNS-Based Service Discovery\n
*
* @verbinclude mdns.txt
*
* Things left to implement:
* -------------------------
*
* - Probing/conflict resolution
* - Sendin... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/mdns/mdns.c | C | unknown | 66,970 |
/**
* @file
* MQTT client
*
* @defgroup mqtt MQTT client
* @ingroup apps
* @verbinclude mqtt_client.txt
*/
/*
* Copyright (c) 2016 Erik Andersson <erian747@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted pr... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/mqtt/mqtt.c | C | unknown | 44,961 |
/**
* @file
* NetBIOS name service responder
*/
/**
* @defgroup netbiosns NETBIOS responder
* @ingroup apps
*
* This is an example implementation of a NetBIOS name server.
* It responds to name queries for a configurable name.
* Name resolving is not supported.
*
* Note that the device doesn't ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/netbiosns/netbiosns.c | C | unknown | 11,702 |
/**
* @file
* Abstract Syntax Notation One (ISO 8824, 8825) encoding
*
* @todo not optimised (yet), favor correctness over speed, favor speed over size
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms,... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_asn1.c | C | unknown | 20,782 |
/**
* @file
* Abstract Syntax Notation One (ISO 8824, 8825) codec.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted prov... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_asn1.h | C | unknown | 5,146 |
/**
* @file
* MIB tree access/construction functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_core.c | C | unknown | 42,711 |
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyri... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_core_priv.h | C | unknown | 3,497 |
/**
* @file
* Management Information Base II (RFC1213) objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following c... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2.c | C | unknown | 4,170 |
/**
* @file
* Management Information Base II (RFC1213) ICMP objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the follow... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_icmp.c | C | unknown | 7,646 |
/**
* @file
* Management Information Base II (RFC1213) INTERFACES objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_interfaces.c | C | unknown | 13,742 |
/**
* @file
* Management Information Base II (RFC1213) IP objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the followin... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_ip.c | C | unknown | 28,823 |
/**
* @file
* Management Information Base II (RFC1213) SNMP objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the follow... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_snmp.c | C | unknown | 9,142 |
/**
* @file
* Management Information Base II (RFC1213) SYSTEM objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the foll... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_system.c | C | unknown | 13,225 |
/**
* @file
* Management Information Base II (RFC1213) TCP objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the followi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_tcp.c | C | unknown | 23,175 |
/**
* @file
* Management Information Base II (RFC1213) UDP objects and functions.
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the followi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_mib2_udp.c | C | unknown | 13,448 |
/**
* @file
* SNMP message processing (RFC1157).
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the foll... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_msg.c | C | unknown | 69,039 |
/**
* @file
* SNMP Agent message handling structures (internal API, do not use in client code).
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modific... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_msg.h | C | unknown | 6,574 |
/**
* @file
* SNMP netconn frontend.
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribu... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_netconn.c | C | unknown | 3,593 |
/**
* @file
* SNMP pbuf stream wrapper implementation (internal API, do not use in client code).
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_pbuf_stream.c | C | unknown | 4,622 |
/**
* @file
* SNMP pbuf stream wrapper (internal API, do not use in client code).
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the follow... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_pbuf_stream.h | C | unknown | 2,829 |
/**
* @file
* SNMP RAW API frontend.
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribu... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_raw.c | C | unknown | 3,225 |
/**
* @file
* SNMP scalar node support implementation.
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_scalar.c | C | unknown | 8,527 |
/**
* @file
* SNMP table support implementation.
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_table.c | C | unknown | 11,678 |
/**
* @file
* SNMP thread synchronization implementation.
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_threadsync.c | C | unknown | 8,516 |
/**
* @file
* SNMPv1 traps implementation.
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmp_traps.c | C | unknown | 13,539 |
/**
* @file
* Additional SNMPv3 functionality RFC3414 and RFC3826.
*/
/*
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribut... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmpv3.c | C | unknown | 4,031 |
/**
* @file
* Dummy SNMPv3 functions.
*/
/*
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must reta... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmpv3_dummy.c | C | unknown | 4,069 |
/**
* @file
* SNMPv3 crypto/auth functions implemented for ARM mbedtls.
*/
/*
* Copyright (c) 2016 Elias Oenal and Dirk Ziegelmeier.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are m... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmpv3_mbedtls.c | C | unknown | 10,978 |
/**
* @file
* Additional SNMPv3 functionality RFC3414 and RFC3826 (internal API, do not use in client code).
*/
/*
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/snmp/snmpv3_priv.h | C | unknown | 2,693 |
/**
* @file
* SNTP client module
*/
/*
* Copyright (c) 2007-2009 Frédéric Bernon, Simon Goldschmidt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/sntp/sntp.c | C | unknown | 23,709 |
/****************************************************************//**
*
* @file tftp_server.c
*
* @author Logan Gunthorpe <logang@deltatee.com>
* Dirk Ziegelmeier <dziegel@gmx.de>
*
* @brief Trivial File Transfer Protocol (RFC 1350)
*
* Copyright (c) Deltatee Enterprises Ltd. 2013
* A... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/apps/tftp/tftp_server.c | C | unknown | 11,503 |
/**
* @file
* Common functions used throughout the stack.
*
* These are reference implementations of the byte swapping functions.
* Again with the aim of being simple, correct and fully portable.
* Byte swapping is the second thing you would want to optimize. You will
* need to port it to your architectur... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/def.c | C | unknown | 6,693 |
/**
* @file
* DNS - host name to IP address resolver.
*
* @defgroup dns DNS
* @ingroup callbackstyle_api
*
* Implements a DNS host name to IP address resolver.
*
* The lwIP DNS resolver functions are used to lookup a host name and
* map it to a numerical IP address. It maintains a list of resolved
... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/dns.c | C | unknown | 52,793 |
/**
* @file
* Incluse internet checksum functions.\n
*
* These are some reference implementations of the checksum algorithm, with the
* aim of being simple, correct and fully portable. Checksumming is the
* first thing you would want to optimize for your platform. If you create
* your own version, link it... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/inet_chksum.c | C | unknown | 19,661 |
/**
* @file
* Modules initialization
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redist... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/init_lwip.c | C | unknown | 16,791 |
/**
* @file
* Common IPv4 and IPv6 code
*
* @defgroup ip IP
* @ingroup callbackstyle_api
*
* @defgroup ip4 IPv4
* @ingroup ip
*
* @defgroup ip6 IPv6
* @ingroup ip
*
* @defgroup ipaddr IP address handling
* @ingroup infrastructure
*
* @defgroup ip4addr IPv4 only
* @ingroup ipaddr
*... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ip.c | C | unknown | 3,685 |
/**
* @file
* AutoIP Automatic LinkLocal IP Configuration
*
* This is a AutoIP implementation for the lwIP TCP/IP stack. It aims to conform
* with RFC 3927.
*
* @defgroup autoip AUTOIP
* @ingroup ip4
* AUTOIP related functions
* USAGE:
*
* define @ref LWIP_AUTOIP 1 in your lwipopts.h
* Options... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/autoip.c | C | unknown | 18,749 |
/**
* @file
* Dynamic Host Configuration Protocol client
*
* @defgroup dhcp4 DHCPv4
* @ingroup ip4
* DHCP (IPv4) related functions
* This is a DHCP client for the lwIP TCP/IP stack. It aims to conform
* with RFC 2131 and RFC 2132.
*
* @todo:
* - Support for interfaces other than Ethernet (SLIP, PP... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/dhcp.c | C | unknown | 73,878 |
/**
* @file
* Address Resolution Protocol module for IP over Ethernet
*
* Functionally, ARP is divided into two parts. The first maps an IP address
* to a physical address when sending a packet, and the second part answers
* requests from other machines for our physical address.
*
* This implementation ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/etharp.c | C | unknown | 46,593 |
/**
* @file
* ICMP - Internet Control Message Protocol
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/icmp.c | C | unknown | 14,176 |
/**
* @file
* IGMP - Internet Group Management Protocol
*
* @defgroup igmp IGMP
* @ingroup ip4
* To be called from TCPIP thread
*/
/*
* Copyright (c) 2002 CITEL Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/igmp.c | C | unknown | 28,463 |
/**
* @file
* This is the IPv4 layer implementation for incoming and outgoing IP traffic.
*
* @see ip_frag.c
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/ip4.c | C | unknown | 40,069 |
/**
* @file
* This is the IPv4 address tools implementation.
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions ar... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/ip4_addr.c | C | unknown | 9,331 |
/**
* @file
* This is the IPv4 packet segmentation and reassembly implementation.
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the fo... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv4/ip4_frag.c | C | unknown | 29,820 |
/**
* @file
*
* DHCPv6.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retai... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/dhcp6.c | C | unknown | 1,964 |
/**
* @file
*
* Ethernet output for IPv6. Uses ND tables for link-layer addressing.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions a... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/ethip6.c | C | unknown | 4,226 |
/**
* @file
*
* IPv6 version of ICMP, as per RFC 4443.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribu... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/icmp6.c | C | unknown | 10,728 |
/**
* @file
*
* INET v6 addresses.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/inet6.c | C | unknown | 2,094 |
/**
* @file
*
* IPv6 layer.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must r... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/ip6.c | C | unknown | 40,158 |
/**
* @file
*
* IPv6 addresses.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code mu... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/ip6_addr.c | C | unknown | 9,028 |
/**
* @file
*
* IPv6 fragmentation and reassembly.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribution... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/ip6_frag.c | C | unknown | 27,416 |
/**
* @file
* Multicast listener discovery
*
* @defgroup mld6 MLD6
* @ingroup ip6
* Multicast listener discovery for IPv6. Aims to be compliant with RFC 2710.
* No support for MLDv2.\n
* To be called from TCPIP thread
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/mld6.c | C | unknown | 17,561 |
/**
* @file
*
* Neighbor discovery and stateless address autoconfiguration for IPv6.
* Aims to be compliant with RFC 4861 (Neighbor discovery) and RFC 4862
* (Address autoconfiguration).
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/ipv6/nd6.c | C | unknown | 70,862 |
/**
* @file
* Dynamic memory manager
*
* This is a lightweight replacement for the standard C library malloc().
*
* If you want to use the standard C library malloc() instead, define
* MEM_LIBC_MALLOC to 1 in your lwipopts.h
*
* To let mem_malloc() use pools (prevents fragmentation and is much faster ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/mem.c | C | unknown | 27,808 |
/**
* @file
* Dynamic pool memory manager
*
* lwIP has dedicated pools for many structures (netconn, protocol control blocks,
* packet buffers, ...). All these pools are managed here.
*
* @defgroup mempool Memory pools
* @ingroup infrastructure
* Custom memory pools
*/
/*
* Copyright (c) 2001... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/memp.c | C | unknown | 13,830 |
/**
* @file
* lwIP network interface abstraction
*
* @defgroup netif Network interface (NETIF)
* @ingroup callbackstyle_api
*
* @defgroup netif_ip4 IPv4 address handling
* @ingroup netif
*
* @defgroup netif_ip6 IPv6 address handling
* @ingroup netif
*
* @defgroup netif_cd Client data handl... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/netif.c | C | unknown | 38,832 |
/**
* @file
* Packet buffer management
*/
/**
* @defgroup pbuf Packet buffers (PBUF)
* @ingroup infrastructure
*
* Packets are built from the pbuf data structure. It supports dynamic
* memory allocation for packet contents or can reference externally
* managed packet contents both in RAM and ROM. Q... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/pbuf.c | C | unknown | 48,279 |
/**
* @file
* Implementation of raw protocol PCBs for low-level handling of
* different types of protocols besides (or overriding) those
* already available in lwIP.\n
* See also @ref raw_raw
*
* @defgroup raw_raw RAW
* @ingroup callbackstyle_api
* Implementation of raw protocol PCBs for low-level ha... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/raw.c | C | unknown | 16,070 |
/**
* @file
* Statistics module
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribut... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/stats.c | C | unknown | 6,270 |
/**
* @file
* lwIP Operating System abstraction
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/sys.c | C | unknown | 3,500 |
/**
* @file
* Transmission Control Protocol for IP
* See also @ref tcp_raw
*
* @defgroup tcp_raw TCP
* @ingroup callbackstyle_api
* Transmission Control Protocol for IP\n
* @see @ref raw_api and @ref netconn
*
* Common functions for the TCP implementation, such as functinos
* for manipulating the... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/tcp.c | C | unknown | 69,608 |
/**
* @file
* Transmission Control Protocol, incoming traffic
*
* The input processing functions of the TCP layer.
*
* These functions are generally called in the order (ip_input() ->)
* tcp_input() -> * tcp_process() -> tcp_receive() (-> application).
*
*/
/*
* Copyright (c) 2001-2004 Swedish In... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/tcp_in.c | C | unknown | 71,099 |
/**
* @file
* Transmission Control Protocol, outgoing traffic
*
* The output functions of TCP.
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted pro... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/tcp_out.c | C | unknown | 59,252 |
/**
* @file
* Stack-internal timers implementation.
* This file includes timer callbacks for stack-internal timers as well as
* functions to set up or stop timers and check for expired timers.
*
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/timeouts.c | C | unknown | 12,923 |
/**
* @file
* User Datagram Protocol module\n
* The code for the User Datagram Protocol UDP & UDPLite (RFC 3828).\n
* See also @ref udp_raw
*
* @defgroup udp_raw UDP
* @ingroup callbackstyle_api
* User Datagram Protocol module\n
* @see @ref raw_api and @ref netconn
*/
/*
* Copyright (c) 2001-2... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/core/udp.c | C | unknown | 40,022 |
/**
* @file
* netconn API (to be used from non-TCPIP threads)
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are m... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/api.h | C | unknown | 16,367 |
/*
* Copyright (c) 2001-2003 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above cop... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/fs.h | C | unknown | 3,670 |
/**
* @file
* HTTP server
*/
/*
* Copyright (c) 2001-2003 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of so... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/httpd.h | C | unknown | 10,203 |
/**
* @file
* HTTP server options list
*/
/*
* Copyright (c) 2001-2003 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistri... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/httpd_opts.h | C | unknown | 12,678 |
/**
* @file
* lwIP iPerf server implementation
*/
/*
* Copyright (c) 2014 Simon Goldschmidt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/lwiperf.h | C | unknown | 3,172 |
/**
* @file
* MDNS responder
*/
/*
* Copyright (c) 2015 Verisure Innovation AB
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must re... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/mdns.h | C | unknown | 2,699 |
/**
* @file
* MDNS responder
*/
/*
* Copyright (c) 2015 Verisure Innovation AB
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must re... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/mdns_opts.h | C | unknown | 2,406 |
/**
* @file
* MDNS responder private definitions
*/
/*
* Copyright (c) 2015 Verisure Innovation AB
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/mdns_priv.h | C | unknown | 2,586 |
/**
* @file
* MQTT client
*/
/*
* Copyright (c) 2016 Erik Andersson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the abo... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/mqtt.h | C | unknown | 8,461 |
/**
* @file
* MQTT client options
*/
/*
* Copyright (c) 2016 Erik Andersson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/mqtt_opts.h | C | unknown | 3,045 |
/**
* @file
* NETBIOS name service responder
*/
/*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/netbiosns.h | C | unknown | 1,830 |
/**
* @file
* NETBIOS name service responder options
*/
/*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/netbiosns_opts.h | C | unknown | 2,323 |
/**
* @file
* SNMP server main API - start and basic configuration
*/
/*
* Copyright (c) 2001, 2002 Leon Woestenberg <leon.woestenberg@axon.tv>
* Copyright (c) 2001, 2002 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or w... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp.h | C | unknown | 4,632 |
/**
* @file
* SNMP core API for implementing MIBs
*/
/*
* Copyright (c) 2006 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp_core.h | C | unknown | 14,808 |
/**
* @file
* SNMP MIB2 API
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp_mib2.h | C | unknown | 3,008 |
/**
* @file
* SNMP server options list
*/
/*
* Copyright (c) 2015 Dirk Ziegelmeier
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp_opts.h | C | unknown | 9,814 |
/**
* @file
* SNMP server MIB API to implement scalar nodes
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp_scalar.h | C | unknown | 4,629 |
/**
* @file
* SNMP server MIB API to implement table nodes
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp_table.h | C | unknown | 5,644 |
/**
* @file
* SNMP server MIB API to implement thread synchronization
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditio... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmp_threadsync.h | C | unknown | 3,913 |
/**
* @file
* Additional SNMPv3 functionality RFC3414 and RFC3826.
*/
/*
* Copyright (c) 2016 Elias Oenal.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribut... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/snmpv3.h | C | unknown | 3,422 |
/**
* @file
* SNTP client API
*/
/*
* Copyright (c) 2007-2009 Frédéric Bernon, Simon Goldschmidt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of so... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/sntp.h | C | unknown | 2,712 |
/**
* @file
* SNTP client options list
*/
/*
* Copyright (c) 2007-2009 Frédéric Bernon, Simon Goldschmidt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/sntp_opts.h | C | unknown | 6,471 |
/****************************************************************//**
*
* @file tftp_opts.h
*
* @author Logan Gunthorpe <logang@deltatee.com>
*
* @brief Trivial File Transfer Protocol (RFC 1350) implementation options
*
* Copyright (c) Deltatee Enterprises Ltd. 2013
* All rights reserved.
*
*... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/tftp_opts.h | C | unknown | 3,088 |
/****************************************************************//**
*
* @file tftp_server.h
*
* @author Logan Gunthorpe <logang@deltatee.com>
*
* @brief Trivial File Transfer Protocol (RFC 1350)
*
* Copyright (c) Deltatee Enterprises Ltd. 2013
* All rights reserved.
*
**********************... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/apps/tftp_server.h | C | unknown | 3,413 |
/**
* @file
* Support for different processor and compiler architectures
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following condi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/arch.h | C | unknown | 11,283 |
/**
* @file
*
* AutoIP Automatic LinkLocal IP Configuration
*/
/*
*
* Copyright (c) 2007 Dominik Spies <kontakt@dspies.de>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/autoip.h | C | unknown | 3,583 |
/**
* @file
* Debug messages infrastructure
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Red... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/debug.h | C | unknown | 5,635 |
/**
* @file
* various utility macros
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistribu... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/def.h | C | unknown | 4,984 |
/**
* @file
* DHCP client API
*/
/*
* Copyright (c) 2001-2004 Leon Woestenberg <leon.woestenberg@gmx.net>
* Copyright (c) 2001-2004 Axon Digital Design B.V., The Netherlands.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted ... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/dhcp.h | C | unknown | 5,698 |
/**
* @file
*
* IPv6 address autoconfiguration as per RFC 4862.
*/
/*
* Copyright (c) 2010 Inico Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. R... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/dhcp6.h | C | unknown | 2,130 |
/**
* @file
* DNS API
*/
/**
* lwip DNS resolver header file.
* Author: Jim Pettinato
* April 2007
* ported from uIP resolv.c Copyright (c) 2002-2003, Adam Dunkels.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/dns.h | C | unknown | 4,981 |
/**
* @file
* lwIP Error codes
*/
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of... | 2301_81045437/classic-platform | communication/lwip-2.0.3/src/include/lwip/err.h | C | unknown | 3,499 |