Guitarix
avahi_register.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 Andreas Degert
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  * ---------------------------------------------------------------------------
18  */
19 
20 #pragma once
21 
22 #ifndef SRC_HEADERS_AVAHI_REGISTER_H_
23 #define SRC_HEADERS_AVAHI_REGISTER_H_
24 
25 #include <string>
26 #include <avahi-gobject/ga-client.h>
27 #include <avahi-gobject/ga-entry-group.h>
28 
29 class AvahiService {
30 private:
31  GaClient *client;
32  GaEntryGroup *group;
33  std::string current_name;
35  static void state_changed(GaEntryGroup *group, GaEntryGroupState state, void *data);
36 public:
37  AvahiService();
38  ~AvahiService();
39  bool register_service(std::string name, int port);
40 };
41 
42 #endif // SRC_HEADERS_AVAHI_REGISTER_H_
GaClient * client
bool register_service(std::string name, int port)
std::string current_name
static void state_changed(GaEntryGroup *group, GaEntryGroupState state, void *data)
GaEntryGroup * group