openthread_fuchsia/
binding.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use openthread::prelude::*;
6
7#[repr(C)]
8#[derive(Debug, Copy, Clone)]
9pub struct otPlatformConfig {
10    pub reset_rcp: bool,
11}
12
13#[repr(C)]
14#[derive(Debug, Copy, Clone)]
15pub struct OtSysMainloopContext {
16    pub placeholder: u32,
17}
18
19extern "C" {
20    pub fn otSysInit(a_platform_config: *mut otPlatformConfig) -> bool;
21    pub fn otSysDeinit();
22    pub fn platformRadioProcess(
23        instance: *mut otsys::otInstance,
24        context: *const OtSysMainloopContext,
25    );
26    pub fn platformSpinelManagerProcess(
27        instance: *mut otsys::otInstance,
28        context: *const OtSysMainloopContext,
29    );
30    pub fn platformInfraIfInit(infra_if_idx: ot::NetifIndex) -> i32;
31    pub fn platformInfraIfOnReceiveIcmp6Msg(instance: *mut otsys::otInstance);
32}