llmnr_client.h File Reference

LLMNR client (Link-Local Multicast Name Resolution) More...

#include "core/net.h"
#include "core/socket.h"
#include "core/udp.h"
#include "dns/dns_cache.h"
#include "dns/dns_common.h"
#include "llmnr/llmnr_common.h"

Go to the source code of this file.

Macros

#define LLMNR_CLIENT_SUPPORT   DISABLED
 
#define LLMNR_CLIENT_MAX_RETRIES   3
 
#define LLMNR_CLIENT_INIT_TIMEOUT   1000
 
#define LLMNR_CLIENT_MAX_TIMEOUT   1000
 
#define LLMNR_MAX_LIFETIME   60000
 

Functions

error_t llmnrResolve (NetInterface *interface, const char_t *name, HostType type, IpAddr *ipAddr)
 Resolve a host name using LLMNR. More...
 
error_t llmnrSendQuery (DnsCacheEntry *entry)
 Send a LLMNR query message. More...
 
void llmnrProcessResponse (NetInterface *interface, const IpPseudoHeader *pseudoHeader, const UdpHeader *udpHeader, const NetBuffer *buffer, size_t offset, const NetRxAncillary *ancillary, void *param)
 Process LLMNR response message. More...
 

Detailed Description

LLMNR client (Link-Local Multicast Name Resolution)

License

SPDX-License-Identifier: GPL-2.0-or-later

Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.

This file is part of CycloneTCP Open.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Author
Oryx Embedded SARL (www.oryx-embedded.com)
Version
2.4.0

Definition in file llmnr_client.h.

Macro Definition Documentation

◆ LLMNR_CLIENT_INIT_TIMEOUT

#define LLMNR_CLIENT_INIT_TIMEOUT   1000

Definition at line 58 of file llmnr_client.h.

◆ LLMNR_CLIENT_MAX_RETRIES

#define LLMNR_CLIENT_MAX_RETRIES   3

Definition at line 51 of file llmnr_client.h.

◆ LLMNR_CLIENT_MAX_TIMEOUT

#define LLMNR_CLIENT_MAX_TIMEOUT   1000

Definition at line 65 of file llmnr_client.h.

◆ LLMNR_CLIENT_SUPPORT

#define LLMNR_CLIENT_SUPPORT   DISABLED

Definition at line 44 of file llmnr_client.h.

◆ LLMNR_MAX_LIFETIME

#define LLMNR_MAX_LIFETIME   60000

Definition at line 72 of file llmnr_client.h.

Function Documentation

◆ llmnrProcessResponse()

void llmnrProcessResponse ( NetInterface interface,
const IpPseudoHeader pseudoHeader,
const UdpHeader udpHeader,
const NetBuffer buffer,
size_t  offset,
const NetRxAncillary ancillary,
void *  param 
)

Process LLMNR response message.

Parameters
[in]interfaceUnderlying network interface
[in]pseudoHeaderUDP pseudo header
[in]udpHeaderUDP header
[in]bufferMulti-part buffer containing the incoming LLMNR message
[in]offsetOffset to the first byte of the LLMNR message
[in]ancillaryAdditional options passed to the stack along with the packet
[in]paramCallback function parameter (not used)

Definition at line 350 of file llmnr_client.c.

◆ llmnrResolve()

error_t llmnrResolve ( NetInterface interface,
const char_t name,
HostType  type,
IpAddr ipAddr 
)

Resolve a host name using LLMNR.

Parameters
[in]interfaceUnderlying network interface
[in]nameName of the host to be resolved
[in]typeHost type (IPv4 or IPv6)
[out]ipAddrIP address corresponding to the specified host name

Definition at line 53 of file llmnr_client.c.

◆ llmnrSendQuery()

error_t llmnrSendQuery ( DnsCacheEntry entry)

Send a LLMNR query message.

Parameters
[in]entryPointer to a valid DNS cache entry
Returns
Error code

Definition at line 214 of file llmnr_client.c.