llmnr_responder.h
Go to the documentation of this file.
1 /**
2  * @file llmnr_responder.h
3  * @brief LLMNR responder (Link-Local Multicast Name Resolution)
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneTCP Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.0
29  **/
30 
31 #ifndef _LLMNR_RESPONDER_H
32 #define _LLMNR_RESPONDER_H
33 
34 //Dependencies
35 #include "core/net.h"
36 #include "core/udp.h"
37 #include "dns/dns_common.h"
38 #include "llmnr/llmnr_common.h"
39 
40 //LLMNR responder support
41 #ifndef LLMNR_RESPONDER_SUPPORT
42  #define LLMNR_RESPONDER_SUPPORT DISABLED
43 #elif (LLMNR_RESPONDER_SUPPORT != ENABLED && LLMNR_RESPONDER_SUPPORT != DISABLED)
44  #error LLMNR_RESPONDER_SUPPORT parameter is not valid
45 #endif
46 
47 //C++ guard
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
51 
52 //LLMNR related functions
54 
55 void llmnrProcessQuery(NetInterface *interface,
56  const IpPseudoHeader *pseudoHeader, const UdpHeader *udpHeader,
57  const NetBuffer *buffer, size_t offset, const NetRxAncillary *ancillary,
58  void *param);
59 
61  uint16_t destPort, uint16_t id, uint16_t qtype, uint16_t qclass);
62 
64  LlmnrHeader *message, size_t *length, Ipv4Addr ipv4Addr);
65 
67  LlmnrHeader *message, size_t *length, const Ipv6Addr *ipv6Addr);
68 
69 //C++ guard
70 #ifdef __cplusplus
71 }
72 #endif
73 
74 #endif
uint8_t message[]
Definition: chap.h:154
Common DNS routines.
uint16_t qclass
Definition: dns_common.h:209
error_t
Error codes.
Definition: error.h:43
Ipv4Addr destIpAddr
Definition: ipcp.h:80
uint32_t Ipv4Addr
IPv4 network address.
Definition: ipv4.h:267
Ipv6Addr
Definition: ipv6.h:251
Definitions common to LLMNR client and responder.
LlmnrHeader
Definition: llmnr_common.h:105
error_t llmnrSendResponse(NetInterface *interface, const IpAddr *destIpAddr, uint16_t destPort, uint16_t id, uint16_t qtype, uint16_t qclass)
Send LLMNR response message.
error_t llmnrFormatIpv4AddrRecord(NetInterface *interface, LlmnrHeader *message, size_t *length, Ipv4Addr ipv4Addr)
Format A resource record.
void llmnrProcessQuery(NetInterface *interface, const IpPseudoHeader *pseudoHeader, const UdpHeader *udpHeader, const NetBuffer *buffer, size_t offset, const NetRxAncillary *ancillary, void *param)
Process LLMNR query message.
error_t llmnrFormatIpv6AddrRecord(NetInterface *interface, LlmnrHeader *message, size_t *length, const Ipv6Addr *ipv6Addr)
Format AAAA resource record.
error_t llmnrResponderInit(NetInterface *interface)
LLMNR responder initialization.
TCP/IP stack core.
#define NetInterface
Definition: net.h:36
#define NetRxAncillary
Definition: net_misc.h:40
IP network address.
Definition: ip.h:79
IP pseudo header.
Definition: ip.h:99
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
uint8_t length
Definition: tcp.h:368
uint16_t destPort
Definition: tcp.h:340
UDP (User Datagram Protocol)
UdpHeader
Definition: udp.h:85