summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-03-12 01:10:33 +0000
committeriphydf <iphydf@users.noreply.github.com>2020-03-14 13:06:19 +0000
commit11ad5471b91dc1b36552ba4e5a3ea434c8a30f5f (patch)
tree94429d74652509b06efef17d17734f647ee4e6ce /other
parentc644ef76810f8db61bce3f52d36a1a6a25e47683 (diff)
Use spdx license identifier instead of GPL blurb.
Diffstat (limited to 'other')
-rw-r--r--other/DHT_bootstrap.c25
-rw-r--r--other/bootstrap_daemon/src/command_line_arguments.c25
-rw-r--r--other/bootstrap_daemon/src/command_line_arguments.h25
-rw-r--r--other/bootstrap_daemon/src/config.c25
-rw-r--r--other/bootstrap_daemon/src/config.h25
-rw-r--r--other/bootstrap_daemon/src/config_defaults.h25
-rw-r--r--other/bootstrap_daemon/src/global.h25
-rw-r--r--other/bootstrap_daemon/src/log.c25
-rw-r--r--other/bootstrap_daemon/src/log.h25
-rw-r--r--other/bootstrap_daemon/src/log_backend_stdout.c25
-rw-r--r--other/bootstrap_daemon/src/log_backend_stdout.h25
-rw-r--r--other/bootstrap_daemon/src/log_backend_syslog.c25
-rw-r--r--other/bootstrap_daemon/src/log_backend_syslog.h25
-rw-r--r--other/bootstrap_daemon/src/tox-bootstrapd.c25
-rw-r--r--other/bootstrap_node_packets.c25
-rw-r--r--other/bootstrap_node_packets.h25
16 files changed, 80 insertions, 320 deletions
diff --git a/other/DHT_bootstrap.c b/other/DHT_bootstrap.c
index 2c47ee8f..49ad8013 100644
--- a/other/DHT_bootstrap.c
+++ b/other/DHT_bootstrap.c
@@ -1,27 +1,12 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * DHT bootstrap 2 * Copyright © 2016-2018 The TokTok team.
3 * 3 * Copyright © 2013 Tox project.
4 * A simple DHT boostrap node for tox.
5 */ 4 */
6 5
7/* 6/*
8 * Copyright © 2016-2018 The TokTok team. 7 * DHT bootstrap
9 * Copyright © 2013 Tox project.
10 *
11 * This file is part of Tox, the free peer to peer instant messenger.
12 *
13 * Tox is free software: you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * Tox is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 * 8 *
23 * You should have received a copy of the GNU General Public License 9 * A simple DHT boostrap node for tox.
24 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
25 */ 10 */
26#include <stdio.h> 11#include <stdio.h>
27#include <stdlib.h> 12#include <stdlib.h>
diff --git a/other/bootstrap_daemon/src/command_line_arguments.c b/other/bootstrap_daemon/src/command_line_arguments.c
index 4b3f3e23..f7af443e 100644
--- a/other/bootstrap_daemon/src/command_line_arguments.c
+++ b/other/bootstrap_daemon/src/command_line_arguments.c
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Command line argument handling. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Command line argument handling.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#include "command_line_arguments.h" 10#include "command_line_arguments.h"
26 11
diff --git a/other/bootstrap_daemon/src/command_line_arguments.h b/other/bootstrap_daemon/src/command_line_arguments.h
index e6e69eed..2cb8edd9 100644
--- a/other/bootstrap_daemon/src/command_line_arguments.h
+++ b/other/bootstrap_daemon/src/command_line_arguments.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Command line argument handling. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Command line argument handling.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_COMMAND_LINE_ARGUMENTS_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_COMMAND_LINE_ARGUMENTS_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_COMMAND_LINE_ARGUMENTS_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_COMMAND_LINE_ARGUMENTS_H
diff --git a/other/bootstrap_daemon/src/config.c b/other/bootstrap_daemon/src/config.c
index 326b6f5b..753c218b 100644
--- a/other/bootstrap_daemon/src/config.c
+++ b/other/bootstrap_daemon/src/config.c
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Functionality related to dealing with the config file. 3 * Copyright © 2014-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2014-2016 Tox project. 8 * Functionality related to dealing with the config file.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#include "config.h" 10#include "config.h"
26 11
diff --git a/other/bootstrap_daemon/src/config.h b/other/bootstrap_daemon/src/config.h
index 022419bf..50507b55 100644
--- a/other/bootstrap_daemon/src/config.h
+++ b/other/bootstrap_daemon/src/config.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Functionality related to dealing with the config file. 3 * Copyright © 2014-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2014-2016 Tox project. 8 * Functionality related to dealing with the config file.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_H
diff --git a/other/bootstrap_daemon/src/config_defaults.h b/other/bootstrap_daemon/src/config_defaults.h
index 2b9bbf8e..a48e5fef 100644
--- a/other/bootstrap_daemon/src/config_defaults.h
+++ b/other/bootstrap_daemon/src/config_defaults.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Default config options for when they are missing in the config file. 3 * Copyright © 2014-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2014-2016 Tox project. 8 * Default config options for when they are missing in the config file.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_DEFAULTS_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_DEFAULTS_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_DEFAULTS_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_CONFIG_DEFAULTS_H
diff --git a/other/bootstrap_daemon/src/global.h b/other/bootstrap_daemon/src/global.h
index c939f19d..11a9d73d 100644
--- a/other/bootstrap_daemon/src/global.h
+++ b/other/bootstrap_daemon/src/global.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Globally used defines. 3 * Copyright © 2014-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2014-2016 Tox project. 8 * Globally used defines.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_GLOBAL_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_GLOBAL_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_GLOBAL_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_GLOBAL_H
diff --git a/other/bootstrap_daemon/src/log.c b/other/bootstrap_daemon/src/log.c
index 4c8a9402..6f498b22 100644
--- a/other/bootstrap_daemon/src/log.c
+++ b/other/bootstrap_daemon/src/log.c
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Logging utility with support of multiple logging backends. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Logging utility with support of multiple logging backends.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#include "log.h" 10#include "log.h"
26#include "log_backend_stdout.h" 11#include "log_backend_stdout.h"
diff --git a/other/bootstrap_daemon/src/log.h b/other/bootstrap_daemon/src/log.h
index 9327da6c..162b8683 100644
--- a/other/bootstrap_daemon/src/log.h
+++ b/other/bootstrap_daemon/src/log.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Logging utility with support of multiple logging backends. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Logging utility with support of multiple logging backends.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_H
diff --git a/other/bootstrap_daemon/src/log_backend_stdout.c b/other/bootstrap_daemon/src/log_backend_stdout.c
index 8d70ba0a..3fac48c0 100644
--- a/other/bootstrap_daemon/src/log_backend_stdout.c
+++ b/other/bootstrap_daemon/src/log_backend_stdout.c
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Stdout logging backend. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Stdout logging backend.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#include "log_backend_stdout.h" 10#include "log_backend_stdout.h"
26 11
diff --git a/other/bootstrap_daemon/src/log_backend_stdout.h b/other/bootstrap_daemon/src/log_backend_stdout.h
index 3ebcd069..b2c8dc7b 100644
--- a/other/bootstrap_daemon/src/log_backend_stdout.h
+++ b/other/bootstrap_daemon/src/log_backend_stdout.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Stdout logging backend. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Stdout logging backend.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_STDOUT_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_STDOUT_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_STDOUT_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_STDOUT_H
diff --git a/other/bootstrap_daemon/src/log_backend_syslog.c b/other/bootstrap_daemon/src/log_backend_syslog.c
index c656f485..ad2bf4eb 100644
--- a/other/bootstrap_daemon/src/log_backend_syslog.c
+++ b/other/bootstrap_daemon/src/log_backend_syslog.c
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Syslog logging backend. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Syslog logging backend.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#include "log_backend_syslog.h" 10#include "log_backend_syslog.h"
26 11
diff --git a/other/bootstrap_daemon/src/log_backend_syslog.h b/other/bootstrap_daemon/src/log_backend_syslog.h
index 6afae224..6cb9eade 100644
--- a/other/bootstrap_daemon/src/log_backend_syslog.h
+++ b/other/bootstrap_daemon/src/log_backend_syslog.h
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Syslog logging backend. 3 * Copyright © 2015-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2015-2016 Tox project. 8 * Syslog logging backend.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_SYSLOG_H 10#ifndef C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_SYSLOG_H
26#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_SYSLOG_H 11#define C_TOXCORE_OTHER_BOOTSTRAP_DAEMON_SRC_LOG_BACKEND_SYSLOG_H
diff --git a/other/bootstrap_daemon/src/tox-bootstrapd.c b/other/bootstrap_daemon/src/tox-bootstrapd.c
index 88f45494..2bef50e9 100644
--- a/other/bootstrap_daemon/src/tox-bootstrapd.c
+++ b/other/bootstrap_daemon/src/tox-bootstrapd.c
@@ -1,26 +1,11 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Tox DHT bootstrap daemon. 2 * Copyright © 2016-2018 The TokTok team.
3 * Main file. 3 * Copyright © 2014-2016 Tox project.
4 */ 4 */
5 5
6/* 6/*
7 * Copyright © 2016-2018 The TokTok team. 7 * Tox DHT bootstrap daemon.
8 * Copyright © 2014-2016 Tox project. 8 * Main file.
9 *
10 * This file is part of Tox, the free peer to peer instant messenger.
11 *
12 * Tox is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * Tox is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
24 */ 9 */
25#ifndef _XOPEN_SOURCE 10#ifndef _XOPEN_SOURCE
26#define _XOPEN_SOURCE 600 11#define _XOPEN_SOURCE 600
diff --git a/other/bootstrap_node_packets.c b/other/bootstrap_node_packets.c
index 8b809013..a60dcad2 100644
--- a/other/bootstrap_node_packets.c
+++ b/other/bootstrap_node_packets.c
@@ -1,27 +1,12 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Special bootstrap node only packets. 2 * Copyright © 2016-2018 The TokTok team.
3 * 3 * Copyright © 2013 Tox project.
4 * Include it in your bootstrap node and use: bootstrap_set_callbacks() to enable.
5 */ 4 */
6 5
7/* 6/*
8 * Copyright © 2016-2018 The TokTok team. 7 * Special bootstrap node only packets.
9 * Copyright © 2013 Tox project.
10 *
11 * This file is part of Tox, the free peer to peer instant messenger.
12 *
13 * Tox is free software: you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * Tox is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 * 8 *
23 * You should have received a copy of the GNU General Public License 9 * Include it in your bootstrap node and use: bootstrap_set_callbacks() to enable.
24 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
25 */ 10 */
26#include "bootstrap_node_packets.h" 11#include "bootstrap_node_packets.h"
27 12
diff --git a/other/bootstrap_node_packets.h b/other/bootstrap_node_packets.h
index 1b8b87f2..ebf69261 100644
--- a/other/bootstrap_node_packets.h
+++ b/other/bootstrap_node_packets.h
@@ -1,27 +1,12 @@
1/* 1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Special bootstrap node only packets. 2 * Copyright © 2016-2018 The TokTok team.
3 * 3 * Copyright © 2015 Tox project.
4 * Include it in your bootstrap node and use: bootstrap_set_callbacks() to enable.
5 */ 4 */
6 5
7/* 6/*
8 * Copyright © 2016-2018 The TokTok team. 7 * Special bootstrap node only packets.
9 * Copyright © 2015 Tox project.
10 *
11 * This file is part of Tox, the free peer to peer instant messenger.
12 *
13 * Tox is free software: you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * Tox is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 * 8 *
23 * You should have received a copy of the GNU General Public License 9 * Include it in your bootstrap node and use: bootstrap_set_callbacks() to enable.
24 * along with Tox. If not, see <http://www.gnu.org/licenses/>.
25 */ 10 */
26#ifndef C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H 11#ifndef C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H
27#define C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H 12#define C_TOXCORE_OTHER_BOOTSTRAP_NODE_PACKETS_H