/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtNfc module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qllcpsocket_p_p.h" QT_BEGIN_NAMESPACE QLlcpSocketPrivate::QLlcpSocketPrivate(QLlcpSocket *q) : q_ptr(q) { } QLlcpSocketPrivate::~QLlcpSocketPrivate() { } void QLlcpSocketPrivate::connectToService(QNearFieldTarget *target, const QString &serviceUri) { Q_UNUSED(target); Q_UNUSED(serviceUri); } void QLlcpSocketPrivate::disconnectFromService() { } bool QLlcpSocketPrivate::bind(quint8 port) { Q_UNUSED(port); return false; } bool QLlcpSocketPrivate::hasPendingDatagrams() const { return false; } qint64 QLlcpSocketPrivate::pendingDatagramSize() const { return -1; } qint64 QLlcpSocketPrivate::writeDatagram(const char *data, qint64 size) { Q_UNUSED(data); Q_UNUSED(size); return -1; } qint64 QLlcpSocketPrivate::writeDatagram(const QByteArray &datagram) { Q_UNUSED(datagram); return -1; } qint64 QLlcpSocketPrivate::readDatagram(char *data, qint64 maxSize, QNearFieldTarget **target, quint8 *port) { Q_UNUSED(data); Q_UNUSED(maxSize); Q_UNUSED(target); Q_UNUSED(port); return -1; } qint64 QLlcpSocketPrivate::writeDatagram(const char *data, qint64 size, QNearFieldTarget *target, quint8 port) { Q_UNUSED(data); Q_UNUSED(size); Q_UNUSED(target); Q_UNUSED(port); return -1; } qint64 QLlcpSocketPrivate::writeDatagram(const QByteArray &datagram, QNearFieldTarget *target, quint8 port) { Q_UNUSED(datagram); Q_UNUSED(target); Q_UNUSED(port); return -1; } QLlcpSocket::SocketError QLlcpSocketPrivate::error() const { return QLlcpSocket::UnknownSocketError; } QLlcpSocket::SocketState QLlcpSocketPrivate::state() const { return QLlcpSocket::UnconnectedState; } qint64 QLlcpSocketPrivate::readData(char *data, qint64 maxlen) { Q_UNUSED(data); Q_UNUSED(maxlen); return -1; } qint64 QLlcpSocketPrivate::writeData(const char *data, qint64 len) { Q_UNUSED(data); Q_UNUSED(len); return -1; } qint64 QLlcpSocketPrivate::bytesAvailable() const { return 0; } bool QLlcpSocketPrivate::canReadLine() const { return false; } bool QLlcpSocketPrivate::waitForReadyRead(int msecs) { Q_UNUSED(msecs); return false; } bool QLlcpSocketPrivate::waitForBytesWritten(int msecs) { Q_UNUSED(msecs); return false; } bool QLlcpSocketPrivate::waitForConnected(int msecs) { Q_UNUSED(msecs); return false; } bool QLlcpSocketPrivate::waitForDisconnected(int msecs) { Q_UNUSED(msecs); return false; } QT_END_NAMESPACE