Ejemplo n.º 1
0
void EnttecWing::init()
{
    /* Create a new UDP socket and start listening to packets coming to
       any local address. */
    m_socket = new QUdpSocket(this);
    reBindSocket();
    connect(m_socket, SIGNAL(readyRead()), this, SLOT(slotReadSocket()));
}
Ejemplo n.º 2
0
bool EnttecWing::openInput(quint32 input, quint32 universe)
{
    Q_UNUSED(input);
    Q_UNUSED(universe)
    return reBindSocket();
}
Ejemplo n.º 3
0
void EnttecWing::configure()
{
    reBindSocket();
    emit configurationChanged();
}
Ejemplo n.º 4
0
void EnttecWing::openInput(quint32 input)
{
    Q_UNUSED(input);
    reBindSocket();
}
Ejemplo n.º 5
0
void EWingInput::open(quint32 input)
{
    Q_UNUSED(input);
    reBindSocket();
}
Ejemplo n.º 6
0
void EWingInput::configure()
{
    reBindSocket();
    emit configurationChanged();
}