mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-03-11 03:39:11 +01:00
Updated file headers
This commit is contained in:
parent
ea0b14e838
commit
783d750dc0
15 changed files with 32 additions and 212 deletions
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* add_delete.c: Add/Delete handler for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
|
|
|
|||
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* bbfdmd.c: BBFDMD deamon
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* cli.c: Cli command for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* cli.h: Cli command for bbfdmd
|
||||
* cli.c: Cli command for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
int bbfdm_cli_exec_command(int argc, char *argv[]);
|
||||
|
|
|
|||
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* common.c: Common utils of Get/Set/Operate handlers
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
|
|
|
|||
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* events.c: Handler to generate bbfdm events on ubus
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
|
|
|
|||
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* get.c: Get handler for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "get.h"
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* get_helper.c: Get Fast handler for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2019 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2019-2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Shubham Sharma <shubham.sharma@iopsys.eu>
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#define _XOPEN_SOURCE
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* ipc.h: File to handle ipc related functionality
|
||||
*
|
||||
* Copyright (C) 2020 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2020-2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#ifndef IPC_H
|
||||
|
|
|
|||
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* operate.c: Operate handler for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* plugin.c: Plugin file bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* plugin.h: Plugin file bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#ifndef PLUGIN_H
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* pretty_print.c: utils for pretty printing of results
|
||||
*
|
||||
* Copyright (C) 2020 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2020-2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
|
|
|
|||
|
|
@ -1,23 +1,11 @@
|
|||
/*
|
||||
* pretty_print.h: utils for pretty printing of results
|
||||
*
|
||||
* Copyright (C) 2020 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2020-2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#ifndef PRETTY_PRINT_H
|
||||
|
|
|
|||
|
|
@ -1,24 +1,12 @@
|
|||
/*
|
||||
* set.c: Set handler for bbfdmd
|
||||
*
|
||||
* Copyright (C) 2023 iopsys Software Solutions AB. All rights reserved.
|
||||
* Copyright (C) 2023 IOPSYS Software Solutions AB. All rights reserved.
|
||||
*
|
||||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
* Author: Amin Ben Romdhane <amin.benromdhane@iopsys.eu>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This program 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 this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
* See LICENSE file for license related information.
|
||||
*/
|
||||
|
||||
#include "set.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue