File: qudpsocket_c.h

package info (click to toggle)
libqtpas 2.6%2B2.0.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,860 kB
  • sloc: cpp: 56,595; pascal: 13,727; sh: 44; makefile: 18
file content (32 lines) | stat: -rw-r--r-- 1,867 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//******************************************************************************
//  Copyright (c) 2005-2013 by Jan Van hijfte
//
//  See the included file COPYING.TXT for details about the copyright.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//******************************************************************************


#ifndef QUDPSOCKET_C_H
#define QUDPSOCKET_C_H

#include <QtNetwork>
#include "pascalbind.h"

C_EXPORT QUdpSocketH QUdpSocket_Create(QObjectH parent);
C_EXPORT void QUdpSocket_Destroy(QUdpSocketH handle);
C_EXPORT bool QUdpSocket_joinMulticastGroup(QUdpSocketH handle, const QHostAddressH groupAddress);
C_EXPORT bool QUdpSocket_joinMulticastGroup2(QUdpSocketH handle, const QHostAddressH groupAddress, const QNetworkInterfaceH iface);
C_EXPORT bool QUdpSocket_leaveMulticastGroup(QUdpSocketH handle, const QHostAddressH groupAddress);
C_EXPORT bool QUdpSocket_leaveMulticastGroup2(QUdpSocketH handle, const QHostAddressH groupAddress, const QNetworkInterfaceH iface);
C_EXPORT void QUdpSocket_multicastInterface(QUdpSocketH handle, QNetworkInterfaceH retval);
C_EXPORT void QUdpSocket_setMulticastInterface(QUdpSocketH handle, const QNetworkInterfaceH iface);
C_EXPORT bool QUdpSocket_hasPendingDatagrams(QUdpSocketH handle);
C_EXPORT qint64 QUdpSocket_pendingDatagramSize(QUdpSocketH handle);
C_EXPORT qint64 QUdpSocket_readDatagram(QUdpSocketH handle, char* data, qint64 maxlen, QHostAddressH host, quint16* port);
C_EXPORT qint64 QUdpSocket_writeDatagram(QUdpSocketH handle, const char* data, qint64 len, const QHostAddressH host, quint16 port);
C_EXPORT qint64 QUdpSocket_writeDatagram2(QUdpSocketH handle, const QByteArrayH datagram, const QHostAddressH host, quint16 port);

#endif