Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qsctpsocket_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 Alex Trotsenko <alex1973tr@gmail.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QSCTPSOCKET_P_H
5#define QSCTPSOCKET_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists for the convenience
12// of the QLibrary class. This header file may change from
13// version to version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtNetwork/qsctpsocket.h>
19#include <private/qtcpsocket_p.h>
20#include <QtCore/qbytearray.h>
21#include <QtCore/qlist.h>
22#include <private/qnetworkdatagram_p.h>
23
24#include <deque>
25
27
28#ifndef QT_NO_SCTP
29
31{
32 Q_DECLARE_PUBLIC(QSctpSocket)
33public:
35 virtual ~QSctpSocketPrivate();
36
37 bool canReadNotification() override;
38 bool writeToSocket() override;
39
42
43 typedef std::deque<QIpPacketHeader> IpHeaderList;
44 QList<IpHeaderList> readHeaders;
45 QList<IpHeaderList> writeHeaders;
46
47 void configureCreatedSocket() override;
48};
49
50#endif // QT_NO_SCTP
51
53
54#endif // QSCTPSOCKET_P_H
\inmodule QtCore
Definition qbytearray.h:57
bool canReadNotification() override
virtual ~QSctpSocketPrivate()
bool writeToSocket() override
std::deque< QIpPacketHeader > IpHeaderList
void configureCreatedSocket() override
QByteArray incomingDatagram
QList< IpHeaderList > readHeaders
QList< IpHeaderList > writeHeaders
The QSctpSocket class provides an SCTP socket.
Definition qsctpsocket.h:17
Combined button and popup list for selecting options.