Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MdnsResponder.h « W5500Ethernet « Networking « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71421e80f5458ef46fb79a371c370fd9459df827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * mDNSResponder.h
 *
 *  Created on: 18 Sep 2019
 *      Author: Christian
 */

#ifndef SRC_NETWORKING_W5500ETHERNET_MDNSRESPONDER_H_
#define SRC_NETWORKING_W5500ETHERNET_MDNSRESPONDER_H_

#include <cstddef>
#include <cstdint>

#include <General/IPAddress.h>
#include <General/StringRef.h>

#include <Config/Configuration.h>
#include "NetworkDefs.h"

class W5500Socket;

class MdnsResponder {
public:
	MdnsResponder(W5500Socket *sock) noexcept;

	void UpdateServiceRecords() noexcept;
	void Spin() noexcept;
	void Announce() noexcept;

private:
	W5500Socket *socket;
	uint32_t lastAnnouncement;

	void ProcessPacket(const uint8_t *data, size_t length) const noexcept;
	bool CheckHostname(const uint8_t *ptr, size_t maxLength, size_t *bytesProcessed) const noexcept;
	void SendARecord(uint16_t transaction) const noexcept;
};

#endif /* SRC_NETWORKING_W5500ETHERNET_MDNSRESPONDER_H_ */