summaryrefslogtreecommitdiff
path: root/mesh/prov.h
diff options
context:
space:
mode:
authorInga Stotland <johan.hedberg@gmail.com>2018-06-21 23:32:00 -0700
committerMarcel Holtmann <marcel@holtmann.org>2018-07-06 13:03:33 +0200
commitef05f4957dce261ca4aa4def2d360015f8be6eed (patch)
tree9b50f62c2cfe1f61e359641e459772e800493a5a /mesh/prov.h
parentf0d0c48e82e485d79393bcd30091cfdc5ee201e7 (diff)
downloadbluez-ef05f4957dce261ca4aa4def2d360015f8be6eed.tar.gz
tools: Move meshctl sources under tools/mesh directory
This is a temporary location until the unified mesh solution is provided
Diffstat (limited to 'mesh/prov.h')
-rw-r--r--mesh/prov.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/mesh/prov.h b/mesh/prov.h
deleted file mode 100644
index 2587df8fb..000000000
--- a/mesh/prov.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- *
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 2017 Intel Corporation. All rights reserved.
- *
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-struct prov;
-
-typedef void (*provision_done_cb)(void *user_data, int status);
-
-bool prov_open(struct mesh_node *node, GDBusProxy *prov_in, uint16_t net_idx,
- provision_done_cb cb, void *user_data);
-bool prov_data_ready(struct mesh_node *node, uint8_t *buf, uint8_t len);
-bool prov_complete(struct mesh_node *node, uint8_t status);
-bool prov_set_sec_level(uint8_t level);
-uint8_t prov_get_sec_level(void);