forked from kismetwireless/kismet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
datasource_freaklabs_zigbee.h
83 lines (64 loc) · 2.47 KB
/
datasource_freaklabs_zigbee.h
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
This file is part of Kismet
Kismet 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; either version 2 of the License, or
(at your option) any later version.
Kismet 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 Kismet; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __DATASOURCE_FREAKLABS_ZIGBEE_H__
#define __DATASOURCE_FREAKLABS_ZIGBEE_H__
#include "config.h"
#include "kis_datasource.h"
class KisDatasourceFreaklabsZigbee;
typedef std::shared_ptr<KisDatasourceFreaklabsZigbee> SharedDatasourceFreaklabsZigbee;
class KisDatasourceFreaklabsZigbee : public KisDatasource {
public:
KisDatasourceFreaklabsZigbee(SharedDatasourceBuilder in_builder) :
KisDatasource(in_builder) {
set_int_source_ipc_binary("kismet_cap_freaklabs_zigbee");
};
virtual ~KisDatasourceFreaklabsZigbee() { };
};
class DatasourceFreaklabsZigbeeBuilder : public KisDatasourceBuilder {
public:
DatasourceFreaklabsZigbeeBuilder(int in_id) :
KisDatasourceBuilder(in_id) {
register_fields();
reserve_fields(NULL);
initialize();
}
DatasourceFreaklabsZigbeeBuilder(int in_id, std::shared_ptr<TrackerElementMap> e) :
KisDatasourceBuilder(in_id, e) {
register_fields();
reserve_fields(e);
initialize();
}
DatasourceFreaklabsZigbeeBuilder() :
KisDatasourceBuilder(0) {
register_fields();
reserve_fields(NULL);
initialize();
}
virtual ~DatasourceFreaklabsZigbeeBuilder() { }
virtual SharedDatasource build_datasource(SharedDatasourceBuilder in_sh_this) {
return SharedDatasourceFreaklabsZigbee(new KisDatasourceFreaklabsZigbee(in_sh_this));
}
virtual void initialize() {
set_source_type("freaklabszigbee");
set_source_description("Freaklabs Zigbee adapter");
set_probe_capable(true);
set_list_capable(false);
set_local_capable(true);
set_remote_capable(true);
set_passive_capable(false);
set_tune_capable(true);
}
};
#endif