-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreceiver.cpp
More file actions
53 lines (40 loc) · 992 Bytes
/
receiver.cpp
File metadata and controls
53 lines (40 loc) · 992 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "receiver.h"
receiver::receiver(QObject *parent) :
QObject(parent)
{
}
receiver::receiver(char *abc, char *cdf)
{
}
void receiver::initSocket()
{
socket = new QUdpSocket(this);
socket->bind(QHostAddress::Any, 3956);
std::cout<<socket->BoundState<<std::endl;
connect(socket, SIGNAL(readyRead()),
this, SLOT(read()));
std::cout<<"connected"<<std::endl;
read();
std::cout<<"readed"<<std::endl;
socket->dumpObjectInfo();
//this-dumpObjectTree();
}
void receiver::doNothing()
{
}
void receiver::run()
{
initSocket();
}
void receiver::read()
{
while(socket->hasPendingDatagrams()) {
QByteArray datagram;
datagram.resize(socket->pendingDatagramSize());
QHostAddress sender;
quint16 senderPort;
socket->readDatagram(datagram.data(), datagram.size(),
&sender, &senderPort);
std::cout<<"Pending datagram: "<<datagram.data()<<std::endl;
}
}