57 lines
2.5 KiB
C++
57 lines
2.5 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2016 Simon Stürz <simon.stuerz@guh.guru> *
|
|
* *
|
|
* This file is part of guh. *
|
|
* *
|
|
* Guh is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, version 2 of the License. *
|
|
* *
|
|
* Guh 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. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with guh. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "qtavahiservice_p.h"
|
|
|
|
QtAvahiServicePrivate::QtAvahiServicePrivate() :
|
|
client(0),
|
|
group(0),
|
|
error(0)
|
|
{
|
|
|
|
}
|
|
|
|
void QtAvahiServicePrivate::callback(AvahiEntryGroup *group, AvahiEntryGroupState state, void *userdata)
|
|
{
|
|
Q_UNUSED(group);
|
|
QtAvahiService *service = static_cast<QtAvahiService *>(userdata);
|
|
if (!service)
|
|
return;
|
|
|
|
switch (state) {
|
|
case AVAHI_ENTRY_GROUP_UNCOMMITED:
|
|
emit service->serviceStateChanged(QtAvahiService::QtAvahiServiceStateUncomitted);
|
|
break;
|
|
case AVAHI_ENTRY_GROUP_REGISTERING:
|
|
emit service->serviceStateChanged(QtAvahiService::QtAvahiServiceStateRegistering);
|
|
break;
|
|
case AVAHI_ENTRY_GROUP_ESTABLISHED:
|
|
emit service->serviceStateChanged(QtAvahiService::QtAvahiServiceStateEstablished);
|
|
break;
|
|
case AVAHI_ENTRY_GROUP_COLLISION:
|
|
emit service->serviceStateChanged(QtAvahiService::QtAvahiServiceStateCollision);
|
|
break;
|
|
case AVAHI_ENTRY_GROUP_FAILURE:
|
|
emit service->serviceStateChanged(QtAvahiService::QtAvahiServiceStateFailure);
|
|
break;
|
|
}
|
|
}
|
|
|