mirror of
https://github.com/FreeRTOS/FreeRTOS-Plus-TCP
synced 2025-10-23 10:07:43 +08:00

* Updating tcp utilities * Some more change in dev_integration_hein.v8 * In FreeRTOS_DNS_Parser.c : use 'ipUDP_PAYLOAD_OFFSET_IPv4' in stead of 'ipIP_PAYLOAD_OFFSET' * And a few more corrections * Changes to WinPCap network interface, removed debugging code * After applying uncrustify * Oops, I forgot the push changes in include files. * Now removing it, hopefully --------- Co-authored-by: Nikhil Kamath <110539926+amazonKamath@users.noreply.github.com> Co-authored-by: Monika Singh <108652024+moninom1@users.noreply.github.com>
91 lines
3.4 KiB
C
91 lines
3.4 KiB
C
/*
|
|
* FreeRTOS+TCP <DEVELOPMENT BRANCH>
|
|
* Copyright (C) 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
* the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
* https://github.com/FreeRTOS
|
|
* https://www.FreeRTOS.org
|
|
*/
|
|
|
|
#ifndef FREERTOS_DNS_PARSER_H
|
|
#define FREERTOS_DNS_PARSER_H
|
|
|
|
/* FreeRTOS includes. */
|
|
#include "FreeRTOS.h"
|
|
|
|
/* FreeRTOS+TCP includes. */
|
|
#include "FreeRTOS_IP.h"
|
|
|
|
#include "FreeRTOS_DNS_Globals.h"
|
|
|
|
/* Standard includes. */
|
|
#include <stdint.h>
|
|
#if ( ipconfigUSE_DNS != 0 )
|
|
|
|
/** @brief Flag DNS parsing errors in situations where an IPv4 address is the return
|
|
* type. */
|
|
|
|
#if ( ipconfigUSE_DNS_CACHE == 1 ) || ( ipconfigDNS_USE_CALLBACKS == 1 )
|
|
size_t DNS_ReadNameField( ParseSet_t * pxSet,
|
|
size_t uxDestLen );
|
|
#endif /* ipconfigUSE_DNS_CACHE || ipconfigDNS_USE_CALLBACKS */
|
|
|
|
/*
|
|
* Simple routine that jumps over the NAME field of a resource record.
|
|
* It returns the number of bytes read.
|
|
*/
|
|
size_t DNS_SkipNameField( const uint8_t * pucByte,
|
|
size_t uxLength );
|
|
|
|
/*
|
|
* Process a response packet from a DNS server.
|
|
* The parameter 'xExpected' indicates whether the identifier in the reply
|
|
* was expected, and thus if the DNS cache may be updated with the reply.
|
|
*/
|
|
uint32_t DNS_ParseDNSReply( uint8_t * pucUDPPayloadBuffer,
|
|
size_t uxBufferLength,
|
|
struct freertos_addrinfo ** ppxAddressInfo,
|
|
BaseType_t xExpected,
|
|
uint16_t usPort );
|
|
|
|
/*
|
|
* The NBNS and the LLMNR protocol share this reply function.
|
|
*/
|
|
#if ( ( ipconfigUSE_MDNS == 1 ) || ( ipconfigUSE_LLMNR == 1 ) || ( ipconfigUSE_NBNS == 1 ) )
|
|
void prepareReplyDNSMessage( NetworkBufferDescriptor_t * pxNetworkBuffer,
|
|
BaseType_t lNetLength );
|
|
#endif
|
|
#if ( ipconfigUSE_NBNS == 1 )
|
|
void DNS_TreatNBNS( uint8_t * pucPayload,
|
|
size_t uxBufferLength,
|
|
uint32_t ulIPAddress );
|
|
#endif
|
|
|
|
/**
|
|
* Parse the DNS answer/response.
|
|
*/
|
|
uint32_t parseDNSAnswer( ParseSet_t * pxSet,
|
|
struct freertos_addrinfo ** ppxAddressInfo,
|
|
size_t * uxBytesRead );
|
|
|
|
#endif /* if ( ipconfigUSE_DNS != 0 ) */
|
|
#endif /* ifndef FREERTOS_DNS_PARSER_H */
|