aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/websocket/emws_client.cpp7
-rw-r--r--modules/websocket/emws_client.h7
-rw-r--r--modules/websocket/emws_peer.cpp7
-rw-r--r--modules/websocket/emws_peer.h7
-rw-r--r--modules/websocket/emws_server.cpp7
-rw-r--r--modules/websocket/emws_server.h7
-rw-r--r--modules/websocket/lws_client.cpp7
-rw-r--r--modules/websocket/lws_client.h7
-rw-r--r--modules/websocket/lws_helper.h7
-rw-r--r--modules/websocket/lws_peer.cpp7
-rw-r--r--modules/websocket/lws_peer.h7
-rw-r--r--modules/websocket/lws_server.cpp7
-rw-r--r--modules/websocket/lws_server.h7
-rw-r--r--modules/websocket/register_types.cpp7
-rw-r--r--modules/websocket/register_types.h7
-rw-r--r--modules/websocket/websocket_client.cpp7
-rw-r--r--modules/websocket/websocket_client.h7
-rw-r--r--modules/websocket/websocket_macros.h7
-rw-r--r--modules/websocket/websocket_multiplayer.cpp7
-rw-r--r--modules/websocket/websocket_multiplayer.h7
-rw-r--r--modules/websocket/websocket_peer.cpp7
-rw-r--r--modules/websocket/websocket_peer.h7
-rw-r--r--modules/websocket/websocket_server.cpp7
-rw-r--r--modules/websocket/websocket_server.h7
24 files changed, 96 insertions, 72 deletions
diff --git a/modules/websocket/emws_client.cpp b/modules/websocket/emws_client.cpp
index 4c7c1e3ed..38fe520fc 100644
--- a/modules/websocket/emws_client.cpp
+++ b/modules/websocket/emws_client.cpp
@@ -2,10 +2,11 @@
/* emws_client.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/emws_client.h b/modules/websocket/emws_client.h
index f7d39d107..8801f3700 100644
--- a/modules/websocket/emws_client.h
+++ b/modules/websocket/emws_client.h
@@ -2,10 +2,11 @@
/* emws_client.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/emws_peer.cpp b/modules/websocket/emws_peer.cpp
index 8f25175e8..93665e642 100644
--- a/modules/websocket/emws_peer.cpp
+++ b/modules/websocket/emws_peer.cpp
@@ -2,10 +2,11 @@
/* emws_peer.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/emws_peer.h b/modules/websocket/emws_peer.h
index 04c5f9728..a50d1874b 100644
--- a/modules/websocket/emws_peer.h
+++ b/modules/websocket/emws_peer.h
@@ -2,10 +2,11 @@
/* emws_peer.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/emws_server.cpp b/modules/websocket/emws_server.cpp
index 474030360..60e913322 100644
--- a/modules/websocket/emws_server.cpp
+++ b/modules/websocket/emws_server.cpp
@@ -2,10 +2,11 @@
/* emws_server.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/emws_server.h b/modules/websocket/emws_server.h
index 4f5c3c3d4..59f1d7634 100644
--- a/modules/websocket/emws_server.h
+++ b/modules/websocket/emws_server.h
@@ -2,10 +2,11 @@
/* emws_server.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_client.cpp b/modules/websocket/lws_client.cpp
index a397cdcef..604b1886a 100644
--- a/modules/websocket/lws_client.cpp
+++ b/modules/websocket/lws_client.cpp
@@ -2,10 +2,11 @@
/* lws_client.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_client.h b/modules/websocket/lws_client.h
index 9e4f78bbd..2e082175d 100644
--- a/modules/websocket/lws_client.h
+++ b/modules/websocket/lws_client.h
@@ -2,10 +2,11 @@
/* lws_client.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_helper.h b/modules/websocket/lws_helper.h
index 557236ff2..ac0c340aa 100644
--- a/modules/websocket/lws_helper.h
+++ b/modules/websocket/lws_helper.h
@@ -2,10 +2,11 @@
/* lws_helper.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_peer.cpp b/modules/websocket/lws_peer.cpp
index b84d62983..fdaa79f9d 100644
--- a/modules/websocket/lws_peer.cpp
+++ b/modules/websocket/lws_peer.cpp
@@ -2,10 +2,11 @@
/* lws_peer.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_peer.h b/modules/websocket/lws_peer.h
index 5b8300973..0a62b65d2 100644
--- a/modules/websocket/lws_peer.h
+++ b/modules/websocket/lws_peer.h
@@ -2,10 +2,11 @@
/* lws_peer.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_server.cpp b/modules/websocket/lws_server.cpp
index 76d74290b..8a47ba557 100644
--- a/modules/websocket/lws_server.cpp
+++ b/modules/websocket/lws_server.cpp
@@ -2,10 +2,11 @@
/* lws_server.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/lws_server.h b/modules/websocket/lws_server.h
index 8a0017a66..5f7ac4850 100644
--- a/modules/websocket/lws_server.h
+++ b/modules/websocket/lws_server.h
@@ -2,10 +2,11 @@
/* lws_server.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/register_types.cpp b/modules/websocket/register_types.cpp
index ab4ac835a..39d03ff1f 100644
--- a/modules/websocket/register_types.cpp
+++ b/modules/websocket/register_types.cpp
@@ -2,10 +2,11 @@
/* register_types.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/register_types.h b/modules/websocket/register_types.h
index 7aa16eacc..010d88789 100644
--- a/modules/websocket/register_types.h
+++ b/modules/websocket/register_types.h
@@ -2,10 +2,11 @@
/* register_types.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_client.cpp b/modules/websocket/websocket_client.cpp
index c607f67c7..f92a38698 100644
--- a/modules/websocket/websocket_client.cpp
+++ b/modules/websocket/websocket_client.cpp
@@ -2,10 +2,11 @@
/* websocket_client.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_client.h b/modules/websocket/websocket_client.h
index 89516bc1d..0e8782522 100644
--- a/modules/websocket/websocket_client.h
+++ b/modules/websocket/websocket_client.h
@@ -2,10 +2,11 @@
/* websocket_client.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_macros.h b/modules/websocket/websocket_macros.h
index 589ecdfbb..b5c215980 100644
--- a/modules/websocket/websocket_macros.h
+++ b/modules/websocket/websocket_macros.h
@@ -2,10 +2,11 @@
/* websocket_macros.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_multiplayer.cpp b/modules/websocket/websocket_multiplayer.cpp
index 71161bcc3..8cd4dff38 100644
--- a/modules/websocket/websocket_multiplayer.cpp
+++ b/modules/websocket/websocket_multiplayer.cpp
@@ -2,10 +2,11 @@
/* websocket_multiplayer.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_multiplayer.h b/modules/websocket/websocket_multiplayer.h
index 3125822c8..e8e795e97 100644
--- a/modules/websocket/websocket_multiplayer.h
+++ b/modules/websocket/websocket_multiplayer.h
@@ -2,10 +2,11 @@
/* websocket_multiplayer.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_peer.cpp b/modules/websocket/websocket_peer.cpp
index abdeb5b62..a6fbb4481 100644
--- a/modules/websocket/websocket_peer.cpp
+++ b/modules/websocket/websocket_peer.cpp
@@ -2,10 +2,11 @@
/* websocket_peer.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_peer.h b/modules/websocket/websocket_peer.h
index 73e1cc41a..f4d8ce3e3 100644
--- a/modules/websocket/websocket_peer.h
+++ b/modules/websocket/websocket_peer.h
@@ -2,10 +2,11 @@
/* websocket_peer.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_server.cpp b/modules/websocket/websocket_server.cpp
index d2f9e0ad9..ba77019f5 100644
--- a/modules/websocket/websocket_server.cpp
+++ b/modules/websocket/websocket_server.cpp
@@ -2,10 +2,11 @@
/* websocket_server.cpp */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
diff --git a/modules/websocket/websocket_server.h b/modules/websocket/websocket_server.h
index 395893e40..db188811f 100644
--- a/modules/websocket/websocket_server.h
+++ b/modules/websocket/websocket_server.h
@@ -2,10 +2,11 @@
/* websocket_server.h */
/*************************************************************************/
/* This file is part of: */
-/* GODOT WEBSOCKET MODULE */
-/* https://github.com/LudiDorici/godot-websocket */
+/* GODOT ENGINE */
+/* https://godotengine.org */
/*************************************************************************/
-/* Copyright (c) 2017 Ludi Dorici, di Alessandrelli Fabio */
+/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
+/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */