From 783d750dc0012028449de4d1647a9ca728726df9 Mon Sep 17 00:00:00 2001 From: Vivek Kumar Dutta Date: Tue, 18 Jul 2023 09:43:22 +0530 Subject: [PATCH] Updated file headers --- bbfdmd/src/add_delete.c | 16 ++-------------- bbfdmd/src/bbfdmd.c | 16 ++-------------- bbfdmd/src/cli.c | 16 ++-------------- bbfdmd/src/cli.h | 18 +++--------------- bbfdmd/src/common.c | 16 ++-------------- bbfdmd/src/events.c | 16 ++-------------- bbfdmd/src/get.c | 16 ++-------------- bbfdmd/src/get_helper.c | 18 +++--------------- bbfdmd/src/ipc.h | 16 ++-------------- bbfdmd/src/operate.c | 16 ++-------------- bbfdmd/src/plugin.c | 16 ++-------------- bbfdmd/src/plugin.h | 16 ++-------------- bbfdmd/src/pretty_print.c | 16 ++-------------- bbfdmd/src/pretty_print.h | 16 ++-------------- bbfdmd/src/set.c | 16 ++-------------- 15 files changed, 32 insertions(+), 212 deletions(-) diff --git a/bbfdmd/src/add_delete.c b/bbfdmd/src/add_delete.c index 03e721e2..772781c0 100644 --- a/bbfdmd/src/add_delete.c +++ b/bbfdmd/src/add_delete.c @@ -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 * Author: Amin Ben Romdhane * - * 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" diff --git a/bbfdmd/src/bbfdmd.c b/bbfdmd/src/bbfdmd.c index 3c293659..3cc7065f 100644 --- a/bbfdmd/src/bbfdmd.c +++ b/bbfdmd/src/bbfdmd.c @@ -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 * Author: Amin Ben Romdhane * - * 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 diff --git a/bbfdmd/src/cli.c b/bbfdmd/src/cli.c index 4a9cb615..8d73aa79 100644 --- a/bbfdmd/src/cli.c +++ b/bbfdmd/src/cli.c @@ -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 * - * 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 diff --git a/bbfdmd/src/cli.h b/bbfdmd/src/cli.h index e933f247..8de5a907 100644 --- a/bbfdmd/src/cli.h +++ b/bbfdmd/src/cli.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 * - * 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[]); diff --git a/bbfdmd/src/common.c b/bbfdmd/src/common.c index 24db30bd..f0689171 100644 --- a/bbfdmd/src/common.c +++ b/bbfdmd/src/common.c @@ -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 * Author: Amin Ben Romdhane * - * 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" diff --git a/bbfdmd/src/events.c b/bbfdmd/src/events.c index 8e3696c5..dd650fdf 100644 --- a/bbfdmd/src/events.c +++ b/bbfdmd/src/events.c @@ -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 * Author: Amin Ben Romdhane * - * 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" diff --git a/bbfdmd/src/get.c b/bbfdmd/src/get.c index a2cf22bf..3ad09c75 100644 --- a/bbfdmd/src/get.c +++ b/bbfdmd/src/get.c @@ -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 * Author: Amin Ben Romdhane * - * 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" diff --git a/bbfdmd/src/get_helper.c b/bbfdmd/src/get_helper.c index bc67a9e7..7c78b90b 100644 --- a/bbfdmd/src/get_helper.c +++ b/bbfdmd/src/get_helper.c @@ -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 + * Author: Vivek Dutta * - * 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 diff --git a/bbfdmd/src/ipc.h b/bbfdmd/src/ipc.h index de82942d..5af354a7 100644 --- a/bbfdmd/src/ipc.h +++ b/bbfdmd/src/ipc.h @@ -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 * - * 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 diff --git a/bbfdmd/src/operate.c b/bbfdmd/src/operate.c index f147b93b..bb10d6be 100644 --- a/bbfdmd/src/operate.c +++ b/bbfdmd/src/operate.c @@ -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 * Author: Amin Ben Romdhane * - * 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" diff --git a/bbfdmd/src/plugin.c b/bbfdmd/src/plugin.c index 3a337494..c7acac13 100644 --- a/bbfdmd/src/plugin.c +++ b/bbfdmd/src/plugin.c @@ -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 * - * 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 diff --git a/bbfdmd/src/plugin.h b/bbfdmd/src/plugin.h index acb4ed3b..1995417f 100644 --- a/bbfdmd/src/plugin.h +++ b/bbfdmd/src/plugin.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 * - * 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 diff --git a/bbfdmd/src/pretty_print.c b/bbfdmd/src/pretty_print.c index e22fd167..0b8bc8a5 100644 --- a/bbfdmd/src/pretty_print.c +++ b/bbfdmd/src/pretty_print.c @@ -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 * - * 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" diff --git a/bbfdmd/src/pretty_print.h b/bbfdmd/src/pretty_print.h index 2fc7ea26..851e401a 100644 --- a/bbfdmd/src/pretty_print.h +++ b/bbfdmd/src/pretty_print.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 * - * 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 diff --git a/bbfdmd/src/set.c b/bbfdmd/src/set.c index f9d87b3d..4b5a5066 100644 --- a/bbfdmd/src/set.c +++ b/bbfdmd/src/set.c @@ -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 * Author: Amin Ben Romdhane * - * 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"