diff options
author | DexesTTP <dexes.ttp@gmail.com> | 2021-04-25 11:30:39 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-25 19:04:34 +0200 |
commit | c11ca9df33c602a8c5d8efb89cb42a9986629c1d (patch) | |
tree | e5b5ce843b65adef0ec964b7ce59f5c46b43eff0 | |
parent | d8409c0e29d3b2894b152274f830eac7a2fb38ad (diff) | |
download | serenity-c11ca9df33c602a8c5d8efb89cb42a9986629c1d.zip |
LibWebSocket+telws: Use my own copyright headers :^)
Since I guess I'll start attributing my own code, might as well change
it for the previously written WebSocket code too !
12 files changed, 12 insertions, 12 deletions
diff --git a/Userland/Libraries/LibWebSocket/ConnectionInfo.cpp b/Userland/Libraries/LibWebSocket/ConnectionInfo.cpp index 03bfdc99ed..a0c2362de0 100644 --- a/Userland/Libraries/LibWebSocket/ConnectionInfo.cpp +++ b/Userland/Libraries/LibWebSocket/ConnectionInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/ConnectionInfo.h b/Userland/Libraries/LibWebSocket/ConnectionInfo.h index 064251d7f0..6bb3e68ec0 100644 --- a/Userland/Libraries/LibWebSocket/ConnectionInfo.h +++ b/Userland/Libraries/LibWebSocket/ConnectionInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp b/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp index 15a9e97b0f..263eefb3e2 100644 --- a/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp +++ b/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.h b/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.h index 24182c4df3..2bb8a3f88d 100644 --- a/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.h +++ b/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.cpp b/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.cpp index f96d5bca1e..ec316f5942 100644 --- a/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.cpp +++ b/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.h b/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.h index e5ce6a7318..3c686e194c 100644 --- a/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.h +++ b/Userland/Libraries/LibWebSocket/Impl/TCPWebSocketConnectionImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.cpp b/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.cpp index f9e0de6b51..c1bf4ced3c 100644 --- a/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.cpp +++ b/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h b/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h index 0cac3b33f2..90c74b5b86 100644 --- a/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h +++ b/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/Message.h b/Userland/Libraries/LibWebSocket/Message.h index acba7a9342..6d483c3713 100644 --- a/Userland/Libraries/LibWebSocket/Message.h +++ b/Userland/Libraries/LibWebSocket/Message.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/WebSocket.cpp b/Userland/Libraries/LibWebSocket/WebSocket.cpp index 75843ac71d..42351fc28a 100644 --- a/Userland/Libraries/LibWebSocket/WebSocket.cpp +++ b/Userland/Libraries/LibWebSocket/WebSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Libraries/LibWebSocket/WebSocket.h b/Userland/Libraries/LibWebSocket/WebSocket.h index bb9af5f368..998372022e 100644 --- a/Userland/Libraries/LibWebSocket/WebSocket.h +++ b/Userland/Libraries/LibWebSocket/WebSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ diff --git a/Userland/Utilities/telws.cpp b/Userland/Utilities/telws.cpp index 95fa8fe4a3..b1803fd13a 100644 --- a/Userland/Utilities/telws.cpp +++ b/Userland/Utilities/telws.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, The SerenityOS developers. + * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com> * * SPDX-License-Identifier: BSD-2-Clause */ |