QKnxNetIpSessionStatusProxy Class

The QKnxNetIpSessionStatusProxy class provides the means to introspect secure session status data inside the generic QKnxNetIpFrame class and to create a KNXnet/IP secure session status frame from provided data. 更多...

头: #include <QKnxNetIpSessionStatusProxy>
qmake: QT += knx
Since: Qt 5.12

该类在 Qt 5.12 引入。

公共类型

class Builder

公共函数

QKnxNetIpSessionStatusProxy (const QKnxNetIpFrame & frame )
bool isValid () const
QKnxNetIp::SecureSessionStatus status () const

静态公共成员

QKnxNetIpSessionStatusProxy::Builder builder ()

详细描述

This class is part of the Qt KNX module and currently available as a Technology Preview, and therefore the API and functionality provided by the class may be subject to change at any time without prior notice.

This frame may be sent by the KNXnet/IP secure server to the KNXnet/IP secure client or by the KNXnet/IP secure client to the KNXnet/IP secure server at any stage of the secure session handshake to indicate an error condition or to convey status information.

注意: When using QKnxNetIpSessionStatusProxy, care must be taken to ensure that the referenced KNXnet/IP frame outlives the proxy on all code paths, lest the proxy ends up referencing deleted data.

The following code sample illustrates how to read the session status information:

auto netIpFrame = QKnxNetIpFrame::fromBytes(...);
const QKnxNetIpSessionStatusProxy proxy(netIpFrame);
if (!proxy.isValid())
    return;
auto currentStatus = proxy.status();
					

另请参阅 builder () 和 Qt KNXnet/IP Connection Classes .

成员函数文档编制

QKnxNetIpSessionStatusProxy:: QKnxNetIpSessionStatusProxy (const QKnxNetIpFrame & frame )

Constructs a proxy object to read the session status information carried by the specified KNXnet/IP frame frame .

[static] QKnxNetIpSessionStatusProxy::Builder QKnxNetIpSessionStatusProxy:: builder ()

Returns a builder object to create a KNXnet/IP session status frame.

bool QKnxNetIpSessionStatusProxy:: isValid () const

返回 true if the frame contains initialized values and is in itself valid, otherwise returns false . A valid KNXnet/IP frame consists of at least a valid header and a size in bytes corresponding to the total size of the KNXnet/IP frame header.

注意: KNXnet/IP session status frames currently have a fixed size of 8 字节。

另请参阅 QKnxNetIpFrameHeader::totalSize ().

QKnxNetIp::SecureSessionStatus QKnxNetIpSessionStatusProxy:: status () const

Returns the session status from the generic KNXnet/IP session status frame.