mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
23 lines
801 B
C
23 lines
801 B
C
/*
|
|
* Copyright (C) 2021 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author Imen Bhiri <imen.bhiri@pivasoftware.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef __TEST_DROPBEAR_H
|
|
#define __TEST_DROPBEAR_H
|
|
|
|
#include "libbbfdm-api/dmcommon.h"
|
|
|
|
extern DMLEAF X_TEST_COM_DropbearParams[];
|
|
|
|
int add_dropbear_instance(char *refparam, struct dmctx *ctx, void *data, char **instancepara);
|
|
int delete_dropbear_instance(char *refparam, struct dmctx *ctx, void *data, char *instance, unsigned char del_action);
|
|
int browse_dropbear_instance(struct dmctx *dmctx, DMNODE *parent_node, void *prev_data, char *prev_instance);
|
|
|
|
#endif //__TEST_DROPBEAR_H
|