mirror of
https://github.com/thelsing/knx.git
synced 2025-09-23 17:51:00 +02:00
13 lines
278 B
C++
13 lines
278 B
C++
#include "knx_ip_search_request.h"
|
|
#ifdef USE_IP
|
|
KnxIpSearchRequest::KnxIpSearchRequest(uint8_t* data, uint16_t length)
|
|
: KnxIpFrame(data, length), _hpai(data + LEN_KNXIP_HEADER)
|
|
{
|
|
}
|
|
|
|
|
|
IpHostProtocolAddressInformation& KnxIpSearchRequest::hpai()
|
|
{
|
|
return _hpai;
|
|
}
|
|
#endif |