miqt/qt/network/gen_qsslsocket.cpp
2025-02-01 13:45:22 +13:00

2092 lines
68 KiB
C++

#include <QAbstractSocket>
#include <QByteArray>
#include <QChildEvent>
#include <QEvent>
#include <QIODevice>
#include <QList>
#include <QMetaMethod>
#include <QMetaObject>
#include <QObject>
#include <QOcspResponse>
#include <QSslCertificate>
#include <QSslCipher>
#include <QSslConfiguration>
#include <QSslError>
#include <QSslKey>
#include <QSslPreSharedKeyAuthenticator>
#include <QSslSocket>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <QTcpSocket>
#include <QTimerEvent>
#include <QVariant>
#include <qsslsocket.h>
#include "gen_qsslsocket.h"
#ifdef __cplusplus
extern "C" {
#endif
void miqt_exec_callback_QSslSocket_encrypted(intptr_t);
void miqt_exec_callback_QSslSocket_peerVerifyError(intptr_t, QSslError*);
void miqt_exec_callback_QSslSocket_sslErrorsWithErrors(intptr_t, struct miqt_array /* of QSslError* */ );
void miqt_exec_callback_QSslSocket_modeChanged(intptr_t, int);
void miqt_exec_callback_QSslSocket_encryptedBytesWritten(intptr_t, long long);
void miqt_exec_callback_QSslSocket_preSharedKeyAuthenticationRequired(intptr_t, QSslPreSharedKeyAuthenticator*);
void miqt_exec_callback_QSslSocket_newSessionTicketReceived(intptr_t);
void miqt_exec_callback_QSslSocket_resume(QSslSocket*, intptr_t);
bool miqt_exec_callback_QSslSocket_setSocketDescriptor(QSslSocket*, intptr_t, intptr_t, int, int);
void miqt_exec_callback_QSslSocket_connectToHost(QSslSocket*, intptr_t, struct miqt_string, uint16_t, int, int);
void miqt_exec_callback_QSslSocket_disconnectFromHost(QSslSocket*, intptr_t);
void miqt_exec_callback_QSslSocket_setSocketOption(QSslSocket*, intptr_t, int, QVariant*);
QVariant* miqt_exec_callback_QSslSocket_socketOption(QSslSocket*, intptr_t, int);
long long miqt_exec_callback_QSslSocket_bytesAvailable(const QSslSocket*, intptr_t);
long long miqt_exec_callback_QSslSocket_bytesToWrite(const QSslSocket*, intptr_t);
bool miqt_exec_callback_QSslSocket_canReadLine(const QSslSocket*, intptr_t);
void miqt_exec_callback_QSslSocket_close(QSslSocket*, intptr_t);
bool miqt_exec_callback_QSslSocket_atEnd(const QSslSocket*, intptr_t);
void miqt_exec_callback_QSslSocket_setReadBufferSize(QSslSocket*, intptr_t, long long);
bool miqt_exec_callback_QSslSocket_waitForConnected(QSslSocket*, intptr_t, int);
bool miqt_exec_callback_QSslSocket_waitForReadyRead(QSslSocket*, intptr_t, int);
bool miqt_exec_callback_QSslSocket_waitForBytesWritten(QSslSocket*, intptr_t, int);
bool miqt_exec_callback_QSslSocket_waitForDisconnected(QSslSocket*, intptr_t, int);
long long miqt_exec_callback_QSslSocket_readData(QSslSocket*, intptr_t, char*, long long);
long long miqt_exec_callback_QSslSocket_writeData(QSslSocket*, intptr_t, const char*, long long);
intptr_t miqt_exec_callback_QSslSocket_socketDescriptor(const QSslSocket*, intptr_t);
bool miqt_exec_callback_QSslSocket_isSequential(const QSslSocket*, intptr_t);
long long miqt_exec_callback_QSslSocket_readLineData(QSslSocket*, intptr_t, char*, long long);
bool miqt_exec_callback_QSslSocket_open(QSslSocket*, intptr_t, int);
long long miqt_exec_callback_QSslSocket_pos(const QSslSocket*, intptr_t);
long long miqt_exec_callback_QSslSocket_size(const QSslSocket*, intptr_t);
bool miqt_exec_callback_QSslSocket_seek(QSslSocket*, intptr_t, long long);
bool miqt_exec_callback_QSslSocket_reset(QSslSocket*, intptr_t);
bool miqt_exec_callback_QSslSocket_event(QSslSocket*, intptr_t, QEvent*);
bool miqt_exec_callback_QSslSocket_eventFilter(QSslSocket*, intptr_t, QObject*, QEvent*);
void miqt_exec_callback_QSslSocket_timerEvent(QSslSocket*, intptr_t, QTimerEvent*);
void miqt_exec_callback_QSslSocket_childEvent(QSslSocket*, intptr_t, QChildEvent*);
void miqt_exec_callback_QSslSocket_customEvent(QSslSocket*, intptr_t, QEvent*);
void miqt_exec_callback_QSslSocket_connectNotify(QSslSocket*, intptr_t, QMetaMethod*);
void miqt_exec_callback_QSslSocket_disconnectNotify(QSslSocket*, intptr_t, QMetaMethod*);
#ifdef __cplusplus
} /* extern C */
#endif
class MiqtVirtualQSslSocket final : public QSslSocket {
public:
MiqtVirtualQSslSocket(): QSslSocket() {};
MiqtVirtualQSslSocket(QObject* parent): QSslSocket(parent) {};
virtual ~MiqtVirtualQSslSocket() override = default;
// cgo.Handle value for overwritten implementation
intptr_t handle__resume = 0;
// Subclass to allow providing a Go implementation
virtual void resume() override {
if (handle__resume == 0) {
QSslSocket::resume();
return;
}
miqt_exec_callback_QSslSocket_resume(this, handle__resume);
}
// Wrapper to allow calling protected method
void virtualbase_resume() {
QSslSocket::resume();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__setSocketDescriptor = 0;
// Subclass to allow providing a Go implementation
virtual bool setSocketDescriptor(qintptr socketDescriptor, QAbstractSocket::SocketState state, QIODevice::OpenMode openMode) override {
if (handle__setSocketDescriptor == 0) {
return QSslSocket::setSocketDescriptor(socketDescriptor, state, openMode);
}
qintptr socketDescriptor_ret = socketDescriptor;
intptr_t sigval1 = (intptr_t)(socketDescriptor_ret);
QAbstractSocket::SocketState state_ret = state;
int sigval2 = static_cast<int>(state_ret);
QIODevice::OpenMode openMode_ret = openMode;
int sigval3 = static_cast<int>(openMode_ret);
bool callback_return_value = miqt_exec_callback_QSslSocket_setSocketDescriptor(this, handle__setSocketDescriptor, sigval1, sigval2, sigval3);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_setSocketDescriptor(intptr_t socketDescriptor, int state, int openMode) {
return QSslSocket::setSocketDescriptor((qintptr)(socketDescriptor), static_cast<QAbstractSocket::SocketState>(state), static_cast<QIODevice::OpenMode>(openMode));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__connectToHost = 0;
// Subclass to allow providing a Go implementation
virtual void connectToHost(const QString& hostName, quint16 port, QIODevice::OpenMode openMode, QAbstractSocket::NetworkLayerProtocol protocol) override {
if (handle__connectToHost == 0) {
QSslSocket::connectToHost(hostName, port, openMode, protocol);
return;
}
const QString hostName_ret = hostName;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray hostName_b = hostName_ret.toUtf8();
struct miqt_string hostName_ms;
hostName_ms.len = hostName_b.length();
hostName_ms.data = static_cast<char*>(malloc(hostName_ms.len));
memcpy(hostName_ms.data, hostName_b.data(), hostName_ms.len);
struct miqt_string sigval1 = hostName_ms;
quint16 port_ret = port;
uint16_t sigval2 = static_cast<uint16_t>(port_ret);
QIODevice::OpenMode openMode_ret = openMode;
int sigval3 = static_cast<int>(openMode_ret);
QAbstractSocket::NetworkLayerProtocol protocol_ret = protocol;
int sigval4 = static_cast<int>(protocol_ret);
miqt_exec_callback_QSslSocket_connectToHost(this, handle__connectToHost, sigval1, sigval2, sigval3, sigval4);
}
// Wrapper to allow calling protected method
void virtualbase_connectToHost(struct miqt_string hostName, uint16_t port, int openMode, int protocol) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
QSslSocket::connectToHost(hostName_QString, static_cast<quint16>(port), static_cast<QIODevice::OpenMode>(openMode), static_cast<QAbstractSocket::NetworkLayerProtocol>(protocol));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__disconnectFromHost = 0;
// Subclass to allow providing a Go implementation
virtual void disconnectFromHost() override {
if (handle__disconnectFromHost == 0) {
QSslSocket::disconnectFromHost();
return;
}
miqt_exec_callback_QSslSocket_disconnectFromHost(this, handle__disconnectFromHost);
}
// Wrapper to allow calling protected method
void virtualbase_disconnectFromHost() {
QSslSocket::disconnectFromHost();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__setSocketOption = 0;
// Subclass to allow providing a Go implementation
virtual void setSocketOption(QAbstractSocket::SocketOption option, const QVariant& value) override {
if (handle__setSocketOption == 0) {
QSslSocket::setSocketOption(option, value);
return;
}
QAbstractSocket::SocketOption option_ret = option;
int sigval1 = static_cast<int>(option_ret);
const QVariant& value_ret = value;
// Cast returned reference into pointer
QVariant* sigval2 = const_cast<QVariant*>(&value_ret);
miqt_exec_callback_QSslSocket_setSocketOption(this, handle__setSocketOption, sigval1, sigval2);
}
// Wrapper to allow calling protected method
void virtualbase_setSocketOption(int option, QVariant* value) {
QSslSocket::setSocketOption(static_cast<QAbstractSocket::SocketOption>(option), *value);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__socketOption = 0;
// Subclass to allow providing a Go implementation
virtual QVariant socketOption(QAbstractSocket::SocketOption option) override {
if (handle__socketOption == 0) {
return QSslSocket::socketOption(option);
}
QAbstractSocket::SocketOption option_ret = option;
int sigval1 = static_cast<int>(option_ret);
QVariant* callback_return_value = miqt_exec_callback_QSslSocket_socketOption(this, handle__socketOption, sigval1);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QVariant* virtualbase_socketOption(int option) {
return new QVariant(QSslSocket::socketOption(static_cast<QAbstractSocket::SocketOption>(option)));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__bytesAvailable = 0;
// Subclass to allow providing a Go implementation
virtual qint64 bytesAvailable() const override {
if (handle__bytesAvailable == 0) {
return QSslSocket::bytesAvailable();
}
long long callback_return_value = miqt_exec_callback_QSslSocket_bytesAvailable(this, handle__bytesAvailable);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_bytesAvailable() const {
qint64 _ret = QSslSocket::bytesAvailable();
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__bytesToWrite = 0;
// Subclass to allow providing a Go implementation
virtual qint64 bytesToWrite() const override {
if (handle__bytesToWrite == 0) {
return QSslSocket::bytesToWrite();
}
long long callback_return_value = miqt_exec_callback_QSslSocket_bytesToWrite(this, handle__bytesToWrite);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_bytesToWrite() const {
qint64 _ret = QSslSocket::bytesToWrite();
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__canReadLine = 0;
// Subclass to allow providing a Go implementation
virtual bool canReadLine() const override {
if (handle__canReadLine == 0) {
return QSslSocket::canReadLine();
}
bool callback_return_value = miqt_exec_callback_QSslSocket_canReadLine(this, handle__canReadLine);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_canReadLine() const {
return QSslSocket::canReadLine();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__close = 0;
// Subclass to allow providing a Go implementation
virtual void close() override {
if (handle__close == 0) {
QSslSocket::close();
return;
}
miqt_exec_callback_QSslSocket_close(this, handle__close);
}
// Wrapper to allow calling protected method
void virtualbase_close() {
QSslSocket::close();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__atEnd = 0;
// Subclass to allow providing a Go implementation
virtual bool atEnd() const override {
if (handle__atEnd == 0) {
return QSslSocket::atEnd();
}
bool callback_return_value = miqt_exec_callback_QSslSocket_atEnd(this, handle__atEnd);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_atEnd() const {
return QSslSocket::atEnd();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__setReadBufferSize = 0;
// Subclass to allow providing a Go implementation
virtual void setReadBufferSize(qint64 size) override {
if (handle__setReadBufferSize == 0) {
QSslSocket::setReadBufferSize(size);
return;
}
qint64 size_ret = size;
long long sigval1 = static_cast<long long>(size_ret);
miqt_exec_callback_QSslSocket_setReadBufferSize(this, handle__setReadBufferSize, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_setReadBufferSize(long long size) {
QSslSocket::setReadBufferSize(static_cast<qint64>(size));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__waitForConnected = 0;
// Subclass to allow providing a Go implementation
virtual bool waitForConnected(int msecs) override {
if (handle__waitForConnected == 0) {
return QSslSocket::waitForConnected(msecs);
}
int sigval1 = msecs;
bool callback_return_value = miqt_exec_callback_QSslSocket_waitForConnected(this, handle__waitForConnected, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_waitForConnected(int msecs) {
return QSslSocket::waitForConnected(static_cast<int>(msecs));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__waitForReadyRead = 0;
// Subclass to allow providing a Go implementation
virtual bool waitForReadyRead(int msecs) override {
if (handle__waitForReadyRead == 0) {
return QSslSocket::waitForReadyRead(msecs);
}
int sigval1 = msecs;
bool callback_return_value = miqt_exec_callback_QSslSocket_waitForReadyRead(this, handle__waitForReadyRead, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_waitForReadyRead(int msecs) {
return QSslSocket::waitForReadyRead(static_cast<int>(msecs));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__waitForBytesWritten = 0;
// Subclass to allow providing a Go implementation
virtual bool waitForBytesWritten(int msecs) override {
if (handle__waitForBytesWritten == 0) {
return QSslSocket::waitForBytesWritten(msecs);
}
int sigval1 = msecs;
bool callback_return_value = miqt_exec_callback_QSslSocket_waitForBytesWritten(this, handle__waitForBytesWritten, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_waitForBytesWritten(int msecs) {
return QSslSocket::waitForBytesWritten(static_cast<int>(msecs));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__waitForDisconnected = 0;
// Subclass to allow providing a Go implementation
virtual bool waitForDisconnected(int msecs) override {
if (handle__waitForDisconnected == 0) {
return QSslSocket::waitForDisconnected(msecs);
}
int sigval1 = msecs;
bool callback_return_value = miqt_exec_callback_QSslSocket_waitForDisconnected(this, handle__waitForDisconnected, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_waitForDisconnected(int msecs) {
return QSslSocket::waitForDisconnected(static_cast<int>(msecs));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__readData = 0;
// Subclass to allow providing a Go implementation
virtual qint64 readData(char* data, qint64 maxlen) override {
if (handle__readData == 0) {
return QSslSocket::readData(data, maxlen);
}
char* sigval1 = data;
qint64 maxlen_ret = maxlen;
long long sigval2 = static_cast<long long>(maxlen_ret);
long long callback_return_value = miqt_exec_callback_QSslSocket_readData(this, handle__readData, sigval1, sigval2);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_readData(char* data, long long maxlen) {
qint64 _ret = QSslSocket::readData(data, static_cast<qint64>(maxlen));
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__writeData = 0;
// Subclass to allow providing a Go implementation
virtual qint64 writeData(const char* data, qint64 len) override {
if (handle__writeData == 0) {
return QSslSocket::writeData(data, len);
}
const char* sigval1 = (const char*) data;
qint64 len_ret = len;
long long sigval2 = static_cast<long long>(len_ret);
long long callback_return_value = miqt_exec_callback_QSslSocket_writeData(this, handle__writeData, sigval1, sigval2);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_writeData(const char* data, long long len) {
qint64 _ret = QSslSocket::writeData(data, static_cast<qint64>(len));
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__socketDescriptor = 0;
// Subclass to allow providing a Go implementation
virtual qintptr socketDescriptor() const override {
if (handle__socketDescriptor == 0) {
return QSslSocket::socketDescriptor();
}
intptr_t callback_return_value = miqt_exec_callback_QSslSocket_socketDescriptor(this, handle__socketDescriptor);
return (qintptr)(callback_return_value);
}
// Wrapper to allow calling protected method
intptr_t virtualbase_socketDescriptor() const {
qintptr _ret = QSslSocket::socketDescriptor();
return (intptr_t)(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__isSequential = 0;
// Subclass to allow providing a Go implementation
virtual bool isSequential() const override {
if (handle__isSequential == 0) {
return QSslSocket::isSequential();
}
bool callback_return_value = miqt_exec_callback_QSslSocket_isSequential(this, handle__isSequential);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_isSequential() const {
return QSslSocket::isSequential();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__readLineData = 0;
// Subclass to allow providing a Go implementation
virtual qint64 readLineData(char* data, qint64 maxlen) override {
if (handle__readLineData == 0) {
return QSslSocket::readLineData(data, maxlen);
}
char* sigval1 = data;
qint64 maxlen_ret = maxlen;
long long sigval2 = static_cast<long long>(maxlen_ret);
long long callback_return_value = miqt_exec_callback_QSslSocket_readLineData(this, handle__readLineData, sigval1, sigval2);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_readLineData(char* data, long long maxlen) {
qint64 _ret = QSslSocket::readLineData(data, static_cast<qint64>(maxlen));
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__open = 0;
// Subclass to allow providing a Go implementation
virtual bool open(QIODevice::OpenMode mode) override {
if (handle__open == 0) {
return QSslSocket::open(mode);
}
QIODevice::OpenMode mode_ret = mode;
int sigval1 = static_cast<int>(mode_ret);
bool callback_return_value = miqt_exec_callback_QSslSocket_open(this, handle__open, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_open(int mode) {
return QSslSocket::open(static_cast<QIODevice::OpenMode>(mode));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__pos = 0;
// Subclass to allow providing a Go implementation
virtual qint64 pos() const override {
if (handle__pos == 0) {
return QSslSocket::pos();
}
long long callback_return_value = miqt_exec_callback_QSslSocket_pos(this, handle__pos);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_pos() const {
qint64 _ret = QSslSocket::pos();
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__size = 0;
// Subclass to allow providing a Go implementation
virtual qint64 size() const override {
if (handle__size == 0) {
return QSslSocket::size();
}
long long callback_return_value = miqt_exec_callback_QSslSocket_size(this, handle__size);
return static_cast<qint64>(callback_return_value);
}
// Wrapper to allow calling protected method
long long virtualbase_size() const {
qint64 _ret = QSslSocket::size();
return static_cast<long long>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__seek = 0;
// Subclass to allow providing a Go implementation
virtual bool seek(qint64 pos) override {
if (handle__seek == 0) {
return QSslSocket::seek(pos);
}
qint64 pos_ret = pos;
long long sigval1 = static_cast<long long>(pos_ret);
bool callback_return_value = miqt_exec_callback_QSslSocket_seek(this, handle__seek, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_seek(long long pos) {
return QSslSocket::seek(static_cast<qint64>(pos));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__reset = 0;
// Subclass to allow providing a Go implementation
virtual bool reset() override {
if (handle__reset == 0) {
return QSslSocket::reset();
}
bool callback_return_value = miqt_exec_callback_QSslSocket_reset(this, handle__reset);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_reset() {
return QSslSocket::reset();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__event = 0;
// Subclass to allow providing a Go implementation
virtual bool event(QEvent* event) override {
if (handle__event == 0) {
return QSslSocket::event(event);
}
QEvent* sigval1 = event;
bool callback_return_value = miqt_exec_callback_QSslSocket_event(this, handle__event, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_event(QEvent* event) {
return QSslSocket::event(event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__eventFilter = 0;
// Subclass to allow providing a Go implementation
virtual bool eventFilter(QObject* watched, QEvent* event) override {
if (handle__eventFilter == 0) {
return QSslSocket::eventFilter(watched, event);
}
QObject* sigval1 = watched;
QEvent* sigval2 = event;
bool callback_return_value = miqt_exec_callback_QSslSocket_eventFilter(this, handle__eventFilter, sigval1, sigval2);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_eventFilter(QObject* watched, QEvent* event) {
return QSslSocket::eventFilter(watched, event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__timerEvent = 0;
// Subclass to allow providing a Go implementation
virtual void timerEvent(QTimerEvent* event) override {
if (handle__timerEvent == 0) {
QSslSocket::timerEvent(event);
return;
}
QTimerEvent* sigval1 = event;
miqt_exec_callback_QSslSocket_timerEvent(this, handle__timerEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_timerEvent(QTimerEvent* event) {
QSslSocket::timerEvent(event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__childEvent = 0;
// Subclass to allow providing a Go implementation
virtual void childEvent(QChildEvent* event) override {
if (handle__childEvent == 0) {
QSslSocket::childEvent(event);
return;
}
QChildEvent* sigval1 = event;
miqt_exec_callback_QSslSocket_childEvent(this, handle__childEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_childEvent(QChildEvent* event) {
QSslSocket::childEvent(event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__customEvent = 0;
// Subclass to allow providing a Go implementation
virtual void customEvent(QEvent* event) override {
if (handle__customEvent == 0) {
QSslSocket::customEvent(event);
return;
}
QEvent* sigval1 = event;
miqt_exec_callback_QSslSocket_customEvent(this, handle__customEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_customEvent(QEvent* event) {
QSslSocket::customEvent(event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__connectNotify = 0;
// Subclass to allow providing a Go implementation
virtual void connectNotify(const QMetaMethod& signal) override {
if (handle__connectNotify == 0) {
QSslSocket::connectNotify(signal);
return;
}
const QMetaMethod& signal_ret = signal;
// Cast returned reference into pointer
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
miqt_exec_callback_QSslSocket_connectNotify(this, handle__connectNotify, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_connectNotify(QMetaMethod* signal) {
QSslSocket::connectNotify(*signal);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__disconnectNotify = 0;
// Subclass to allow providing a Go implementation
virtual void disconnectNotify(const QMetaMethod& signal) override {
if (handle__disconnectNotify == 0) {
QSslSocket::disconnectNotify(signal);
return;
}
const QMetaMethod& signal_ret = signal;
// Cast returned reference into pointer
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
miqt_exec_callback_QSslSocket_disconnectNotify(this, handle__disconnectNotify, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_disconnectNotify(QMetaMethod* signal) {
QSslSocket::disconnectNotify(*signal);
}
};
QSslSocket* QSslSocket_new() {
return new MiqtVirtualQSslSocket();
}
QSslSocket* QSslSocket_new2(QObject* parent) {
return new MiqtVirtualQSslSocket(parent);
}
void QSslSocket_virtbase(QSslSocket* src, QTcpSocket** outptr_QTcpSocket) {
*outptr_QTcpSocket = static_cast<QTcpSocket*>(src);
}
QMetaObject* QSslSocket_metaObject(const QSslSocket* self) {
return (QMetaObject*) self->metaObject();
}
void* QSslSocket_metacast(QSslSocket* self, const char* param1) {
return self->qt_metacast(param1);
}
struct miqt_string QSslSocket_tr(const char* s) {
QString _ret = QSslSocket::tr(s);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
struct miqt_string QSslSocket_trUtf8(const char* s) {
QString _ret = QSslSocket::trUtf8(s);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
void QSslSocket_resume(QSslSocket* self) {
self->resume();
}
void QSslSocket_connectToHostEncrypted(QSslSocket* self, struct miqt_string hostName, uint16_t port) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
self->connectToHostEncrypted(hostName_QString, static_cast<quint16>(port));
}
void QSslSocket_connectToHostEncrypted2(QSslSocket* self, struct miqt_string hostName, uint16_t port, struct miqt_string sslPeerName) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
QString sslPeerName_QString = QString::fromUtf8(sslPeerName.data, sslPeerName.len);
self->connectToHostEncrypted(hostName_QString, static_cast<quint16>(port), sslPeerName_QString);
}
bool QSslSocket_setSocketDescriptor(QSslSocket* self, intptr_t socketDescriptor, int state, int openMode) {
return self->setSocketDescriptor((qintptr)(socketDescriptor), static_cast<QAbstractSocket::SocketState>(state), static_cast<QIODevice::OpenMode>(openMode));
}
void QSslSocket_connectToHost(QSslSocket* self, struct miqt_string hostName, uint16_t port, int openMode, int protocol) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
self->connectToHost(hostName_QString, static_cast<quint16>(port), static_cast<QIODevice::OpenMode>(openMode), static_cast<QAbstractSocket::NetworkLayerProtocol>(protocol));
}
void QSslSocket_disconnectFromHost(QSslSocket* self) {
self->disconnectFromHost();
}
void QSslSocket_setSocketOption(QSslSocket* self, int option, QVariant* value) {
self->setSocketOption(static_cast<QAbstractSocket::SocketOption>(option), *value);
}
QVariant* QSslSocket_socketOption(QSslSocket* self, int option) {
return new QVariant(self->socketOption(static_cast<QAbstractSocket::SocketOption>(option)));
}
int QSslSocket_mode(const QSslSocket* self) {
QSslSocket::SslMode _ret = self->mode();
return static_cast<int>(_ret);
}
bool QSslSocket_isEncrypted(const QSslSocket* self) {
return self->isEncrypted();
}
int QSslSocket_protocol(const QSslSocket* self) {
QSsl::SslProtocol _ret = self->protocol();
return static_cast<int>(_ret);
}
void QSslSocket_setProtocol(QSslSocket* self, int protocol) {
self->setProtocol(static_cast<QSsl::SslProtocol>(protocol));
}
int QSslSocket_peerVerifyMode(const QSslSocket* self) {
QSslSocket::PeerVerifyMode _ret = self->peerVerifyMode();
return static_cast<int>(_ret);
}
void QSslSocket_setPeerVerifyMode(QSslSocket* self, int mode) {
self->setPeerVerifyMode(static_cast<QSslSocket::PeerVerifyMode>(mode));
}
int QSslSocket_peerVerifyDepth(const QSslSocket* self) {
return self->peerVerifyDepth();
}
void QSslSocket_setPeerVerifyDepth(QSslSocket* self, int depth) {
self->setPeerVerifyDepth(static_cast<int>(depth));
}
struct miqt_string QSslSocket_peerVerifyName(const QSslSocket* self) {
QString _ret = self->peerVerifyName();
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
void QSslSocket_setPeerVerifyName(QSslSocket* self, struct miqt_string hostName) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
self->setPeerVerifyName(hostName_QString);
}
long long QSslSocket_bytesAvailable(const QSslSocket* self) {
qint64 _ret = self->bytesAvailable();
return static_cast<long long>(_ret);
}
long long QSslSocket_bytesToWrite(const QSslSocket* self) {
qint64 _ret = self->bytesToWrite();
return static_cast<long long>(_ret);
}
bool QSslSocket_canReadLine(const QSslSocket* self) {
return self->canReadLine();
}
void QSslSocket_close(QSslSocket* self) {
self->close();
}
bool QSslSocket_atEnd(const QSslSocket* self) {
return self->atEnd();
}
bool QSslSocket_flush(QSslSocket* self) {
return self->flush();
}
void QSslSocket_abort(QSslSocket* self) {
self->abort();
}
void QSslSocket_setReadBufferSize(QSslSocket* self, long long size) {
self->setReadBufferSize(static_cast<qint64>(size));
}
long long QSslSocket_encryptedBytesAvailable(const QSslSocket* self) {
qint64 _ret = self->encryptedBytesAvailable();
return static_cast<long long>(_ret);
}
long long QSslSocket_encryptedBytesToWrite(const QSslSocket* self) {
qint64 _ret = self->encryptedBytesToWrite();
return static_cast<long long>(_ret);
}
QSslConfiguration* QSslSocket_sslConfiguration(const QSslSocket* self) {
return new QSslConfiguration(self->sslConfiguration());
}
void QSslSocket_setSslConfiguration(QSslSocket* self, QSslConfiguration* config) {
self->setSslConfiguration(*config);
}
void QSslSocket_setLocalCertificateChain(QSslSocket* self, struct miqt_array /* of QSslCertificate* */ localChain) {
QList<QSslCertificate> localChain_QList;
localChain_QList.reserve(localChain.len);
QSslCertificate** localChain_arr = static_cast<QSslCertificate**>(localChain.data);
for(size_t i = 0; i < localChain.len; ++i) {
localChain_QList.push_back(*(localChain_arr[i]));
}
self->setLocalCertificateChain(localChain_QList);
}
struct miqt_array /* of QSslCertificate* */ QSslSocket_localCertificateChain(const QSslSocket* self) {
QList<QSslCertificate> _ret = self->localCertificateChain();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCertificate** _arr = static_cast<QSslCertificate**>(malloc(sizeof(QSslCertificate*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCertificate(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
void QSslSocket_setLocalCertificate(QSslSocket* self, QSslCertificate* certificate) {
self->setLocalCertificate(*certificate);
}
void QSslSocket_setLocalCertificateWithFileName(QSslSocket* self, struct miqt_string fileName) {
QString fileName_QString = QString::fromUtf8(fileName.data, fileName.len);
self->setLocalCertificate(fileName_QString);
}
QSslCertificate* QSslSocket_localCertificate(const QSslSocket* self) {
return new QSslCertificate(self->localCertificate());
}
QSslCertificate* QSslSocket_peerCertificate(const QSslSocket* self) {
return new QSslCertificate(self->peerCertificate());
}
struct miqt_array /* of QSslCertificate* */ QSslSocket_peerCertificateChain(const QSslSocket* self) {
QList<QSslCertificate> _ret = self->peerCertificateChain();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCertificate** _arr = static_cast<QSslCertificate**>(malloc(sizeof(QSslCertificate*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCertificate(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
QSslCipher* QSslSocket_sessionCipher(const QSslSocket* self) {
return new QSslCipher(self->sessionCipher());
}
int QSslSocket_sessionProtocol(const QSslSocket* self) {
QSsl::SslProtocol _ret = self->sessionProtocol();
return static_cast<int>(_ret);
}
struct miqt_array /* of QOcspResponse* */ QSslSocket_ocspResponses(const QSslSocket* self) {
QVector<QOcspResponse> _ret = self->ocspResponses();
// Convert QList<> from C++ memory to manually-managed C memory
QOcspResponse** _arr = static_cast<QOcspResponse**>(malloc(sizeof(QOcspResponse*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QOcspResponse(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
void QSslSocket_setPrivateKey(QSslSocket* self, QSslKey* key) {
self->setPrivateKey(*key);
}
void QSslSocket_setPrivateKeyWithFileName(QSslSocket* self, struct miqt_string fileName) {
QString fileName_QString = QString::fromUtf8(fileName.data, fileName.len);
self->setPrivateKey(fileName_QString);
}
QSslKey* QSslSocket_privateKey(const QSslSocket* self) {
return new QSslKey(self->privateKey());
}
struct miqt_array /* of QSslCipher* */ QSslSocket_ciphers(const QSslSocket* self) {
QList<QSslCipher> _ret = self->ciphers();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCipher** _arr = static_cast<QSslCipher**>(malloc(sizeof(QSslCipher*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCipher(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
void QSslSocket_setCiphers(QSslSocket* self, struct miqt_array /* of QSslCipher* */ ciphers) {
QList<QSslCipher> ciphers_QList;
ciphers_QList.reserve(ciphers.len);
QSslCipher** ciphers_arr = static_cast<QSslCipher**>(ciphers.data);
for(size_t i = 0; i < ciphers.len; ++i) {
ciphers_QList.push_back(*(ciphers_arr[i]));
}
self->setCiphers(ciphers_QList);
}
void QSslSocket_setCiphersWithCiphers(QSslSocket* self, struct miqt_string ciphers) {
QString ciphers_QString = QString::fromUtf8(ciphers.data, ciphers.len);
self->setCiphers(ciphers_QString);
}
void QSslSocket_setDefaultCiphers(struct miqt_array /* of QSslCipher* */ ciphers) {
QList<QSslCipher> ciphers_QList;
ciphers_QList.reserve(ciphers.len);
QSslCipher** ciphers_arr = static_cast<QSslCipher**>(ciphers.data);
for(size_t i = 0; i < ciphers.len; ++i) {
ciphers_QList.push_back(*(ciphers_arr[i]));
}
QSslSocket::setDefaultCiphers(ciphers_QList);
}
struct miqt_array /* of QSslCipher* */ QSslSocket_defaultCiphers() {
QList<QSslCipher> _ret = QSslSocket::defaultCiphers();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCipher** _arr = static_cast<QSslCipher**>(malloc(sizeof(QSslCipher*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCipher(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
struct miqt_array /* of QSslCipher* */ QSslSocket_supportedCiphers() {
QList<QSslCipher> _ret = QSslSocket::supportedCiphers();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCipher** _arr = static_cast<QSslCipher**>(malloc(sizeof(QSslCipher*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCipher(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
bool QSslSocket_addCaCertificates(QSslSocket* self, struct miqt_string path) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return self->addCaCertificates(path_QString);
}
void QSslSocket_addCaCertificate(QSslSocket* self, QSslCertificate* certificate) {
self->addCaCertificate(*certificate);
}
void QSslSocket_addCaCertificatesWithCertificates(QSslSocket* self, struct miqt_array /* of QSslCertificate* */ certificates) {
QList<QSslCertificate> certificates_QList;
certificates_QList.reserve(certificates.len);
QSslCertificate** certificates_arr = static_cast<QSslCertificate**>(certificates.data);
for(size_t i = 0; i < certificates.len; ++i) {
certificates_QList.push_back(*(certificates_arr[i]));
}
self->addCaCertificates(certificates_QList);
}
void QSslSocket_setCaCertificates(QSslSocket* self, struct miqt_array /* of QSslCertificate* */ certificates) {
QList<QSslCertificate> certificates_QList;
certificates_QList.reserve(certificates.len);
QSslCertificate** certificates_arr = static_cast<QSslCertificate**>(certificates.data);
for(size_t i = 0; i < certificates.len; ++i) {
certificates_QList.push_back(*(certificates_arr[i]));
}
self->setCaCertificates(certificates_QList);
}
struct miqt_array /* of QSslCertificate* */ QSslSocket_caCertificates(const QSslSocket* self) {
QList<QSslCertificate> _ret = self->caCertificates();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCertificate** _arr = static_cast<QSslCertificate**>(malloc(sizeof(QSslCertificate*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCertificate(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
bool QSslSocket_addDefaultCaCertificates(struct miqt_string path) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return QSslSocket::addDefaultCaCertificates(path_QString);
}
void QSslSocket_addDefaultCaCertificate(QSslCertificate* certificate) {
QSslSocket::addDefaultCaCertificate(*certificate);
}
void QSslSocket_addDefaultCaCertificatesWithCertificates(struct miqt_array /* of QSslCertificate* */ certificates) {
QList<QSslCertificate> certificates_QList;
certificates_QList.reserve(certificates.len);
QSslCertificate** certificates_arr = static_cast<QSslCertificate**>(certificates.data);
for(size_t i = 0; i < certificates.len; ++i) {
certificates_QList.push_back(*(certificates_arr[i]));
}
QSslSocket::addDefaultCaCertificates(certificates_QList);
}
void QSslSocket_setDefaultCaCertificates(struct miqt_array /* of QSslCertificate* */ certificates) {
QList<QSslCertificate> certificates_QList;
certificates_QList.reserve(certificates.len);
QSslCertificate** certificates_arr = static_cast<QSslCertificate**>(certificates.data);
for(size_t i = 0; i < certificates.len; ++i) {
certificates_QList.push_back(*(certificates_arr[i]));
}
QSslSocket::setDefaultCaCertificates(certificates_QList);
}
struct miqt_array /* of QSslCertificate* */ QSslSocket_defaultCaCertificates() {
QList<QSslCertificate> _ret = QSslSocket::defaultCaCertificates();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCertificate** _arr = static_cast<QSslCertificate**>(malloc(sizeof(QSslCertificate*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCertificate(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
struct miqt_array /* of QSslCertificate* */ QSslSocket_systemCaCertificates() {
QList<QSslCertificate> _ret = QSslSocket::systemCaCertificates();
// Convert QList<> from C++ memory to manually-managed C memory
QSslCertificate** _arr = static_cast<QSslCertificate**>(malloc(sizeof(QSslCertificate*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslCertificate(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
bool QSslSocket_waitForConnected(QSslSocket* self, int msecs) {
return self->waitForConnected(static_cast<int>(msecs));
}
bool QSslSocket_waitForEncrypted(QSslSocket* self) {
return self->waitForEncrypted();
}
bool QSslSocket_waitForReadyRead(QSslSocket* self, int msecs) {
return self->waitForReadyRead(static_cast<int>(msecs));
}
bool QSslSocket_waitForBytesWritten(QSslSocket* self, int msecs) {
return self->waitForBytesWritten(static_cast<int>(msecs));
}
bool QSslSocket_waitForDisconnected(QSslSocket* self, int msecs) {
return self->waitForDisconnected(static_cast<int>(msecs));
}
struct miqt_array /* of QSslError* */ QSslSocket_sslErrors(const QSslSocket* self) {
QList<QSslError> _ret = self->sslErrors();
// Convert QList<> from C++ memory to manually-managed C memory
QSslError** _arr = static_cast<QSslError**>(malloc(sizeof(QSslError*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslError(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
struct miqt_array /* of QSslError* */ QSslSocket_sslHandshakeErrors(const QSslSocket* self) {
QList<QSslError> _ret = self->sslHandshakeErrors();
// Convert QList<> from C++ memory to manually-managed C memory
QSslError** _arr = static_cast<QSslError**>(malloc(sizeof(QSslError*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QSslError(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
bool QSslSocket_supportsSsl() {
return QSslSocket::supportsSsl();
}
long QSslSocket_sslLibraryVersionNumber() {
return QSslSocket::sslLibraryVersionNumber();
}
struct miqt_string QSslSocket_sslLibraryVersionString() {
QString _ret = QSslSocket::sslLibraryVersionString();
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
long QSslSocket_sslLibraryBuildVersionNumber() {
return QSslSocket::sslLibraryBuildVersionNumber();
}
struct miqt_string QSslSocket_sslLibraryBuildVersionString() {
QString _ret = QSslSocket::sslLibraryBuildVersionString();
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
void QSslSocket_ignoreSslErrors(QSslSocket* self, struct miqt_array /* of QSslError* */ errors) {
QList<QSslError> errors_QList;
errors_QList.reserve(errors.len);
QSslError** errors_arr = static_cast<QSslError**>(errors.data);
for(size_t i = 0; i < errors.len; ++i) {
errors_QList.push_back(*(errors_arr[i]));
}
self->ignoreSslErrors(errors_QList);
}
void QSslSocket_startClientEncryption(QSslSocket* self) {
self->startClientEncryption();
}
void QSslSocket_startServerEncryption(QSslSocket* self) {
self->startServerEncryption();
}
void QSslSocket_ignoreSslErrors2(QSslSocket* self) {
self->ignoreSslErrors();
}
void QSslSocket_encrypted(QSslSocket* self) {
self->encrypted();
}
void QSslSocket_connect_encrypted(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)()>(&QSslSocket::encrypted), self, [=]() {
miqt_exec_callback_QSslSocket_encrypted(slot);
});
}
void QSslSocket_peerVerifyError(QSslSocket* self, QSslError* error) {
self->peerVerifyError(*error);
}
void QSslSocket_connect_peerVerifyError(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)(const QSslError&)>(&QSslSocket::peerVerifyError), self, [=](const QSslError& error) {
const QSslError& error_ret = error;
// Cast returned reference into pointer
QSslError* sigval1 = const_cast<QSslError*>(&error_ret);
miqt_exec_callback_QSslSocket_peerVerifyError(slot, sigval1);
});
}
void QSslSocket_sslErrorsWithErrors(QSslSocket* self, struct miqt_array /* of QSslError* */ errors) {
QList<QSslError> errors_QList;
errors_QList.reserve(errors.len);
QSslError** errors_arr = static_cast<QSslError**>(errors.data);
for(size_t i = 0; i < errors.len; ++i) {
errors_QList.push_back(*(errors_arr[i]));
}
self->sslErrors(errors_QList);
}
void QSslSocket_connect_sslErrorsWithErrors(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)(const QList<QSslError>&)>(&QSslSocket::sslErrors), self, [=](const QList<QSslError>& errors) {
const QList<QSslError>& errors_ret = errors;
// Convert QList<> from C++ memory to manually-managed C memory
QSslError** errors_arr = static_cast<QSslError**>(malloc(sizeof(QSslError*) * errors_ret.length()));
for (size_t i = 0, e = errors_ret.length(); i < e; ++i) {
errors_arr[i] = new QSslError(errors_ret[i]);
}
struct miqt_array errors_out;
errors_out.len = errors_ret.length();
errors_out.data = static_cast<void*>(errors_arr);
struct miqt_array /* of QSslError* */ sigval1 = errors_out;
miqt_exec_callback_QSslSocket_sslErrorsWithErrors(slot, sigval1);
});
}
void QSslSocket_modeChanged(QSslSocket* self, int newMode) {
self->modeChanged(static_cast<QSslSocket::SslMode>(newMode));
}
void QSslSocket_connect_modeChanged(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)(QSslSocket::SslMode)>(&QSslSocket::modeChanged), self, [=](QSslSocket::SslMode newMode) {
QSslSocket::SslMode newMode_ret = newMode;
int sigval1 = static_cast<int>(newMode_ret);
miqt_exec_callback_QSslSocket_modeChanged(slot, sigval1);
});
}
void QSslSocket_encryptedBytesWritten(QSslSocket* self, long long totalBytes) {
self->encryptedBytesWritten(static_cast<qint64>(totalBytes));
}
void QSslSocket_connect_encryptedBytesWritten(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)(qint64)>(&QSslSocket::encryptedBytesWritten), self, [=](qint64 totalBytes) {
qint64 totalBytes_ret = totalBytes;
long long sigval1 = static_cast<long long>(totalBytes_ret);
miqt_exec_callback_QSslSocket_encryptedBytesWritten(slot, sigval1);
});
}
void QSslSocket_preSharedKeyAuthenticationRequired(QSslSocket* self, QSslPreSharedKeyAuthenticator* authenticator) {
self->preSharedKeyAuthenticationRequired(authenticator);
}
void QSslSocket_connect_preSharedKeyAuthenticationRequired(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)(QSslPreSharedKeyAuthenticator*)>(&QSslSocket::preSharedKeyAuthenticationRequired), self, [=](QSslPreSharedKeyAuthenticator* authenticator) {
QSslPreSharedKeyAuthenticator* sigval1 = authenticator;
miqt_exec_callback_QSslSocket_preSharedKeyAuthenticationRequired(slot, sigval1);
});
}
void QSslSocket_newSessionTicketReceived(QSslSocket* self) {
self->newSessionTicketReceived();
}
void QSslSocket_connect_newSessionTicketReceived(QSslSocket* self, intptr_t slot) {
MiqtVirtualQSslSocket::connect(self, static_cast<void (QSslSocket::*)()>(&QSslSocket::newSessionTicketReceived), self, [=]() {
miqt_exec_callback_QSslSocket_newSessionTicketReceived(slot);
});
}
struct miqt_string QSslSocket_tr2(const char* s, const char* c) {
QString _ret = QSslSocket::tr(s, c);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
struct miqt_string QSslSocket_tr3(const char* s, const char* c, int n) {
QString _ret = QSslSocket::tr(s, c, static_cast<int>(n));
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
struct miqt_string QSslSocket_trUtf82(const char* s, const char* c) {
QString _ret = QSslSocket::trUtf8(s, c);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
struct miqt_string QSslSocket_trUtf83(const char* s, const char* c, int n) {
QString _ret = QSslSocket::trUtf8(s, c, static_cast<int>(n));
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
struct miqt_string _ms;
_ms.len = _b.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
void QSslSocket_connectToHostEncrypted3(QSslSocket* self, struct miqt_string hostName, uint16_t port, int mode) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
self->connectToHostEncrypted(hostName_QString, static_cast<quint16>(port), static_cast<QIODevice::OpenMode>(mode));
}
void QSslSocket_connectToHostEncrypted4(QSslSocket* self, struct miqt_string hostName, uint16_t port, int mode, int protocol) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
self->connectToHostEncrypted(hostName_QString, static_cast<quint16>(port), static_cast<QIODevice::OpenMode>(mode), static_cast<QAbstractSocket::NetworkLayerProtocol>(protocol));
}
void QSslSocket_connectToHostEncrypted42(QSslSocket* self, struct miqt_string hostName, uint16_t port, struct miqt_string sslPeerName, int mode) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
QString sslPeerName_QString = QString::fromUtf8(sslPeerName.data, sslPeerName.len);
self->connectToHostEncrypted(hostName_QString, static_cast<quint16>(port), sslPeerName_QString, static_cast<QIODevice::OpenMode>(mode));
}
void QSslSocket_connectToHostEncrypted5(QSslSocket* self, struct miqt_string hostName, uint16_t port, struct miqt_string sslPeerName, int mode, int protocol) {
QString hostName_QString = QString::fromUtf8(hostName.data, hostName.len);
QString sslPeerName_QString = QString::fromUtf8(sslPeerName.data, sslPeerName.len);
self->connectToHostEncrypted(hostName_QString, static_cast<quint16>(port), sslPeerName_QString, static_cast<QIODevice::OpenMode>(mode), static_cast<QAbstractSocket::NetworkLayerProtocol>(protocol));
}
void QSslSocket_setLocalCertificate2(QSslSocket* self, struct miqt_string fileName, int format) {
QString fileName_QString = QString::fromUtf8(fileName.data, fileName.len);
self->setLocalCertificate(fileName_QString, static_cast<QSsl::EncodingFormat>(format));
}
void QSslSocket_setPrivateKey2(QSslSocket* self, struct miqt_string fileName, int algorithm) {
QString fileName_QString = QString::fromUtf8(fileName.data, fileName.len);
self->setPrivateKey(fileName_QString, static_cast<QSsl::KeyAlgorithm>(algorithm));
}
void QSslSocket_setPrivateKey3(QSslSocket* self, struct miqt_string fileName, int algorithm, int format) {
QString fileName_QString = QString::fromUtf8(fileName.data, fileName.len);
self->setPrivateKey(fileName_QString, static_cast<QSsl::KeyAlgorithm>(algorithm), static_cast<QSsl::EncodingFormat>(format));
}
void QSslSocket_setPrivateKey4(QSslSocket* self, struct miqt_string fileName, int algorithm, int format, struct miqt_string passPhrase) {
QString fileName_QString = QString::fromUtf8(fileName.data, fileName.len);
QByteArray passPhrase_QByteArray(passPhrase.data, passPhrase.len);
self->setPrivateKey(fileName_QString, static_cast<QSsl::KeyAlgorithm>(algorithm), static_cast<QSsl::EncodingFormat>(format), passPhrase_QByteArray);
}
bool QSslSocket_addCaCertificates2(QSslSocket* self, struct miqt_string path, int format) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return self->addCaCertificates(path_QString, static_cast<QSsl::EncodingFormat>(format));
}
bool QSslSocket_addCaCertificates3(QSslSocket* self, struct miqt_string path, int format, int syntax) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return self->addCaCertificates(path_QString, static_cast<QSsl::EncodingFormat>(format), static_cast<QRegExp::PatternSyntax>(syntax));
}
bool QSslSocket_addDefaultCaCertificates2(struct miqt_string path, int format) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return QSslSocket::addDefaultCaCertificates(path_QString, static_cast<QSsl::EncodingFormat>(format));
}
bool QSslSocket_addDefaultCaCertificates3(struct miqt_string path, int format, int syntax) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return QSslSocket::addDefaultCaCertificates(path_QString, static_cast<QSsl::EncodingFormat>(format), static_cast<QRegExp::PatternSyntax>(syntax));
}
bool QSslSocket_waitForEncrypted1(QSslSocket* self, int msecs) {
return self->waitForEncrypted(static_cast<int>(msecs));
}
bool QSslSocket_override_virtual_resume(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__resume = slot;
return true;
}
void QSslSocket_virtualbase_resume(void* self) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_resume();
}
bool QSslSocket_override_virtual_setSocketDescriptor(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__setSocketDescriptor = slot;
return true;
}
bool QSslSocket_virtualbase_setSocketDescriptor(void* self, intptr_t socketDescriptor, int state, int openMode) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_setSocketDescriptor(socketDescriptor, state, openMode);
}
bool QSslSocket_override_virtual_connectToHost(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__connectToHost = slot;
return true;
}
void QSslSocket_virtualbase_connectToHost(void* self, struct miqt_string hostName, uint16_t port, int openMode, int protocol) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_connectToHost(hostName, port, openMode, protocol);
}
bool QSslSocket_override_virtual_disconnectFromHost(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__disconnectFromHost = slot;
return true;
}
void QSslSocket_virtualbase_disconnectFromHost(void* self) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_disconnectFromHost();
}
bool QSslSocket_override_virtual_setSocketOption(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__setSocketOption = slot;
return true;
}
void QSslSocket_virtualbase_setSocketOption(void* self, int option, QVariant* value) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_setSocketOption(option, value);
}
bool QSslSocket_override_virtual_socketOption(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__socketOption = slot;
return true;
}
QVariant* QSslSocket_virtualbase_socketOption(void* self, int option) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_socketOption(option);
}
bool QSslSocket_override_virtual_bytesAvailable(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__bytesAvailable = slot;
return true;
}
long long QSslSocket_virtualbase_bytesAvailable(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_bytesAvailable();
}
bool QSslSocket_override_virtual_bytesToWrite(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__bytesToWrite = slot;
return true;
}
long long QSslSocket_virtualbase_bytesToWrite(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_bytesToWrite();
}
bool QSslSocket_override_virtual_canReadLine(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__canReadLine = slot;
return true;
}
bool QSslSocket_virtualbase_canReadLine(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_canReadLine();
}
bool QSslSocket_override_virtual_close(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__close = slot;
return true;
}
void QSslSocket_virtualbase_close(void* self) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_close();
}
bool QSslSocket_override_virtual_atEnd(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__atEnd = slot;
return true;
}
bool QSslSocket_virtualbase_atEnd(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_atEnd();
}
bool QSslSocket_override_virtual_setReadBufferSize(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__setReadBufferSize = slot;
return true;
}
void QSslSocket_virtualbase_setReadBufferSize(void* self, long long size) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_setReadBufferSize(size);
}
bool QSslSocket_override_virtual_waitForConnected(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__waitForConnected = slot;
return true;
}
bool QSslSocket_virtualbase_waitForConnected(void* self, int msecs) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_waitForConnected(msecs);
}
bool QSslSocket_override_virtual_waitForReadyRead(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__waitForReadyRead = slot;
return true;
}
bool QSslSocket_virtualbase_waitForReadyRead(void* self, int msecs) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_waitForReadyRead(msecs);
}
bool QSslSocket_override_virtual_waitForBytesWritten(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__waitForBytesWritten = slot;
return true;
}
bool QSslSocket_virtualbase_waitForBytesWritten(void* self, int msecs) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_waitForBytesWritten(msecs);
}
bool QSslSocket_override_virtual_waitForDisconnected(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__waitForDisconnected = slot;
return true;
}
bool QSslSocket_virtualbase_waitForDisconnected(void* self, int msecs) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_waitForDisconnected(msecs);
}
bool QSslSocket_override_virtual_readData(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__readData = slot;
return true;
}
long long QSslSocket_virtualbase_readData(void* self, char* data, long long maxlen) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_readData(data, maxlen);
}
bool QSslSocket_override_virtual_writeData(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__writeData = slot;
return true;
}
long long QSslSocket_virtualbase_writeData(void* self, const char* data, long long len) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_writeData(data, len);
}
bool QSslSocket_override_virtual_socketDescriptor(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__socketDescriptor = slot;
return true;
}
intptr_t QSslSocket_virtualbase_socketDescriptor(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_socketDescriptor();
}
bool QSslSocket_override_virtual_isSequential(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__isSequential = slot;
return true;
}
bool QSslSocket_virtualbase_isSequential(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_isSequential();
}
bool QSslSocket_override_virtual_readLineData(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__readLineData = slot;
return true;
}
long long QSslSocket_virtualbase_readLineData(void* self, char* data, long long maxlen) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_readLineData(data, maxlen);
}
bool QSslSocket_override_virtual_open(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__open = slot;
return true;
}
bool QSslSocket_virtualbase_open(void* self, int mode) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_open(mode);
}
bool QSslSocket_override_virtual_pos(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__pos = slot;
return true;
}
long long QSslSocket_virtualbase_pos(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_pos();
}
bool QSslSocket_override_virtual_size(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__size = slot;
return true;
}
long long QSslSocket_virtualbase_size(const void* self) {
return ( (const MiqtVirtualQSslSocket*)(self) )->virtualbase_size();
}
bool QSslSocket_override_virtual_seek(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__seek = slot;
return true;
}
bool QSslSocket_virtualbase_seek(void* self, long long pos) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_seek(pos);
}
bool QSslSocket_override_virtual_reset(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__reset = slot;
return true;
}
bool QSslSocket_virtualbase_reset(void* self) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_reset();
}
bool QSslSocket_override_virtual_event(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__event = slot;
return true;
}
bool QSslSocket_virtualbase_event(void* self, QEvent* event) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_event(event);
}
bool QSslSocket_override_virtual_eventFilter(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__eventFilter = slot;
return true;
}
bool QSslSocket_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event) {
return ( (MiqtVirtualQSslSocket*)(self) )->virtualbase_eventFilter(watched, event);
}
bool QSslSocket_override_virtual_timerEvent(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__timerEvent = slot;
return true;
}
void QSslSocket_virtualbase_timerEvent(void* self, QTimerEvent* event) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_timerEvent(event);
}
bool QSslSocket_override_virtual_childEvent(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__childEvent = slot;
return true;
}
void QSslSocket_virtualbase_childEvent(void* self, QChildEvent* event) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_childEvent(event);
}
bool QSslSocket_override_virtual_customEvent(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__customEvent = slot;
return true;
}
void QSslSocket_virtualbase_customEvent(void* self, QEvent* event) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_customEvent(event);
}
bool QSslSocket_override_virtual_connectNotify(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__connectNotify = slot;
return true;
}
void QSslSocket_virtualbase_connectNotify(void* self, QMetaMethod* signal) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_connectNotify(signal);
}
bool QSslSocket_override_virtual_disconnectNotify(void* self, intptr_t slot) {
MiqtVirtualQSslSocket* self_cast = dynamic_cast<MiqtVirtualQSslSocket*>( (QSslSocket*)(self) );
if (self_cast == nullptr) {
return false;
}
self_cast->handle__disconnectNotify = slot;
return true;
}
void QSslSocket_virtualbase_disconnectNotify(void* self, QMetaMethod* signal) {
( (MiqtVirtualQSslSocket*)(self) )->virtualbase_disconnectNotify(signal);
}
void QSslSocket_delete(QSslSocket* self) {
delete self;
}