QTfrontend/netudpserver.cpp
author unc0rr
Wed, 21 Feb 2007 19:18:05 +0000
changeset 470 86ca84d5da74
parent 468 8403d6884707
child 486 7ea71cd3acd5
permissions -rw-r--r--
Update instructions

#include <QUdpSocket>

#include "netudpserver.h"

HWNetUdpServer::HWNetUdpServer(QObject* parent) :
  QObject(parent)
{
  pUdpSocket = new QUdpSocket(this);
  pUdpSocket->bind(46631);

  connect(pUdpSocket, SIGNAL(readyRead()), this, SLOT(onClientRead()));
  
}

void HWNetUdpServer::onClientRead()
{
  while (pUdpSocket->hasPendingDatagrams()) {
    QByteArray datagram;
    datagram.resize(pUdpSocket->pendingDatagramSize());
    QHostAddress clientAddr;
    quint16 clientPort;
    pUdpSocket->readDatagram(datagram.data(), datagram.size(), &clientAddr, &clientPort);
    if(QString("%1").arg(datagram.data())==QString("hedgewars client")) {
      // send answer to client
      pUdpSocket->writeDatagram("hedgewars server", clientAddr, clientPort);
    }
  }
}