diff --git a/client/pom.xml b/client/pom.xml index 9943deb6f1df6e8df82fd78294f4460545213439..9bad3b3d14e404f95374b8f7e1fa02d13873912a 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -1,9 +1,9 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.red5</groupId> <artifactId>red5-parent</artifactId> - <version>1.3.24</version> + <version>1.3.25</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>red5-client</artifactId> @@ -16,9 +16,14 @@ <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + </plugin> + <!-- <plugin> <artifactId>maven-toolchains-plugin</artifactId> </plugin> + --> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> @@ -73,5 +78,17 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>net.sf.ehcache</groupId> + <artifactId>ehcache</artifactId> + <version>${ehcache.version}</version> + <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> </project> diff --git a/client/src/main/java/org/red5/client/Red5Client.java b/client/src/main/java/org/red5/client/Red5Client.java index 7dd7445a3cdd18869fb8ced115488fbe03c7efb1..b2e6e5aaa4e9a1ce2e47b47c599fe7e043661271 100644 --- a/client/src/main/java/org/red5/client/Red5Client.java +++ b/client/src/main/java/org/red5/client/Red5Client.java @@ -18,7 +18,7 @@ public final class Red5Client { /** * Current server version with revision */ - public static final String VERSION = "Red5 Client 1.3.24"; + public static final String VERSION = "Red5 Client 1.3.25"; /** * Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope diff --git a/client/src/test/java/org/red5/client/net/rtmp/FBLiveConnectTest.java b/client/src/test/java/org/red5/client/net/rtmp/FBLiveConnectTest.java index d3eefaf5a9e262d4f8fc7e0b5d0a14ab73dc8a78..e49f5498afe4490bc386ca138912eface44c0de8 100644 --- a/client/src/test/java/org/red5/client/net/rtmp/FBLiveConnectTest.java +++ b/client/src/test/java/org/red5/client/net/rtmp/FBLiveConnectTest.java @@ -57,6 +57,14 @@ public class FBLiveConnectTest { private double streamId = 1.0d; + private String host = "localhost"; //"rtmp-api.facebook.com"; + + private int port = 1935; // 80; + + private String app = "live"; //"rtmp"; + + private String publishName = "stream1"; //"1567066673326082?ds=1&s_l=1&a=ATiBCGoo4bLDTa4c"; + static { System.setProperty("red5.deployment.type", "junit"); } @@ -65,40 +73,37 @@ public class FBLiveConnectTest { public void setUp() throws Exception { executor = Executors.newCachedThreadPool(); reader = new FLVReader(new File(System.getProperty("user.dir") + "/src/test/resources/fixtures", "rotations.flv")); - Runnable run = new Runnable() { - public void run() { - while (reader.hasMoreTags()) { - ITag tag = reader.readTag(); - if (tag != null) { - IRTMPEvent msg; - switch (tag.getDataType()) { - case Constants.TYPE_AUDIO_DATA: - msg = new AudioData(tag.getBody()); - break; - case Constants.TYPE_VIDEO_DATA: - msg = new VideoData(tag.getBody()); - break; - case Constants.TYPE_INVOKE: - msg = new Invoke(tag.getBody()); - break; - case Constants.TYPE_NOTIFY: - msg = new Notify(tag.getBody()); - break; - default: - log.warn("Unexpected type? {}", tag.getDataType()); - msg = new Unknown(tag.getDataType(), tag.getBody()); - break; - } - msg.setTimestamp(tag.getTimestamp()); - que.add(RTMPMessage.build(msg)); - } else { - break; + executor.submit(() -> { + while (reader.hasMoreTags()) { + ITag tag = reader.readTag(); + if (tag != null) { + IRTMPEvent msg; + switch (tag.getDataType()) { + case Constants.TYPE_AUDIO_DATA: + msg = new AudioData(tag.getBody()); + break; + case Constants.TYPE_VIDEO_DATA: + msg = new VideoData(tag.getBody()); + break; + case Constants.TYPE_INVOKE: + msg = new Invoke(tag.getBody()); + break; + case Constants.TYPE_NOTIFY: + msg = new Notify(tag.getBody()); + break; + default: + log.warn("Unexpected type? {}", tag.getDataType()); + msg = new Unknown(tag.getDataType(), tag.getBody()); + break; } + msg.setTimestamp(tag.getTimestamp()); + que.add(RTMPMessage.build(msg)); + } else { + break; } - log.info("Queue fill completed: {}", que.size()); } - }; - executor.submit(run); + log.info("Queue fill completed: {}", que.size()); + }); } @After @@ -111,18 +116,10 @@ public class FBLiveConnectTest { @Test public void testFBLivePublish() throws InterruptedException { log.info("\n testFBLivePublish"); - String host = "rtmp-api.facebook.com"; - int port = 80; - String app = "rtmp"; - final String publishName = "1567066673326082?ds=1&s_l=1&a=ATiBCGoo4bLDTa4c"; log.info("PublishName: {}", publishName); - final RTMPClient client = new RTMPClient(); - client.setConnectionClosedHandler(new Runnable() { - @Override - public void run() { - log.info("Test - exit"); - } + client.setConnectionClosedHandler(() -> { + log.info("Test - exit"); }); client.setExceptionHandler(new ClientExceptionHandler() { @Override @@ -189,37 +186,41 @@ public class FBLiveConnectTest { }; // connect client.connect(host, port, app, connectCallback); - - Runnable pusher = new Runnable() { - - public void run() { - while (!publishing) { - try { - Thread.sleep(100L); - } catch (InterruptedException e) { - } + executor.submit(() -> { + while (!publishing) { + try { + Thread.sleep(100L); + } catch (InterruptedException e) { } - do { - try { - RTMPMessage message = que.poll(); - if (message != null && client != null) { - client.publishStreamData(streamId, message); - } else { - Thread.sleep(3L); - } - } catch (Exception e1) { - log.warn("streaming error {}", e1); - } - } while (!que.isEmpty()); - client.unpublish(streamId); } - - }; - executor.submit(pusher); - + do { + try { + RTMPMessage message = que.poll(); + if (message != null && client != null) { + client.publishStreamData(streamId, message); + } else { + Thread.sleep(3L); + } + } catch (Exception e1) { + log.warn("streaming error {}", e1); + } + } while (!que.isEmpty()); + client.unpublish(streamId); + }); Thread.currentThread().join(30000L); client.disconnect(); log.info("Test - end"); } + public static void main(String[] args) { + FBLiveConnectTest test = new FBLiveConnectTest(); + try { + test.setUp(); + test.testFBLivePublish(); + test.tearDown(); + } catch (Exception e) { + e.printStackTrace(); + } + } + } diff --git a/client/src/test/java/org/red5/client/net/rtmp/RTMPClientTest.java b/client/src/test/java/org/red5/client/net/rtmp/RTMPClientTest.java index 2fcafebf1d5fc8cad39992a66950bfd0f83a4e70..82c0ded95eb6575df806ff698b3cef76336e4f36 100644 --- a/client/src/test/java/org/red5/client/net/rtmp/RTMPClientTest.java +++ b/client/src/test/java/org/red5/client/net/rtmp/RTMPClientTest.java @@ -21,7 +21,7 @@ public class RTMPClientTest { private static Timer timer = new Timer(); // application name - private static String app = "oflaDemo"; //"vod"; + private static String app = "live"; //oflaDemo, vod; // AMS sample // private static String sourceStreamName = "mp4:sample1_1500kbps.f4v"; diff --git a/common/pom.xml b/common/pom.xml index fa564a765c96828874f71ad78244710abdc5cb8b..7382320a0002f0267f73e66a8d88d637e95c97ff 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>org.red5</groupId> <artifactId>red5-parent</artifactId> - <version>1.3.24</version> + <version>1.3.25</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>red5-server-common</artifactId> @@ -124,7 +124,7 @@ <dependency> <groupId>net.engio</groupId> <artifactId>mbassador</artifactId> - <version>1.3.24</version> + <version>1.3.25</version> </dependency> --> <dependency> <groupId>junit</groupId> diff --git a/common/src/main/java/org/red5/logging/LoggingContextSelector.java b/common/src/main/java/org/red5/logging/LoggingContextSelector.java index 852f8a73a3739a4c4a8e054b9c3cd7930feb2e37..8fe6edd1db18d8c53031f9c7bbba836e51205529 100644 --- a/common/src/main/java/org/red5/logging/LoggingContextSelector.java +++ b/common/src/main/java/org/red5/logging/LoggingContextSelector.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/logging/Red5LoggerFactory.java b/common/src/main/java/org/red5/logging/Red5LoggerFactory.java index 2547c3ee9941dfcfde9ea4542f16aad6a9ff2111..e5b3bbaa97892b4a4e3efae6ed2b4de29df256d0 100644 --- a/common/src/main/java/org/red5/logging/Red5LoggerFactory.java +++ b/common/src/main/java/org/red5/logging/Red5LoggerFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/AttributeStore.java b/common/src/main/java/org/red5/server/AttributeStore.java index 65f18dd3d571b05dadd5eec24f976292e84e25cf..e7116a941b0d3a94baf19b0893286ed9f8a00822 100644 --- a/common/src/main/java/org/red5/server/AttributeStore.java +++ b/common/src/main/java/org/red5/server/AttributeStore.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/BaseConnection.java b/common/src/main/java/org/red5/server/BaseConnection.java index a39166ed10047be794e9eb6e7674bf0921aca7f7..e2ff40e0b8efb56d91af189a1ba57699270a618e 100644 --- a/common/src/main/java/org/red5/server/BaseConnection.java +++ b/common/src/main/java/org/red5/server/BaseConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/Client.java b/common/src/main/java/org/red5/server/Client.java index a6716b0bed4e81472e7331a15d30c8dc36a96c90..8a92192cbbec0e0d58867d773c709f5ae5e81b7e 100644 --- a/common/src/main/java/org/red5/server/Client.java +++ b/common/src/main/java/org/red5/server/Client.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/ClientList.java b/common/src/main/java/org/red5/server/ClientList.java index 2da881270f236846bf582ad928f89ba8371bc772..bac26d50224bbdfb0cc107b6d6833b178811c899 100644 --- a/common/src/main/java/org/red5/server/ClientList.java +++ b/common/src/main/java/org/red5/server/ClientList.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/ClientRegistry.java b/common/src/main/java/org/red5/server/ClientRegistry.java index cb2f0fbc3b264418d3a697cd69256e22d672ed75..ee067f1261209f05b1dae0fe4732573edd1da554 100644 --- a/common/src/main/java/org/red5/server/ClientRegistry.java +++ b/common/src/main/java/org/red5/server/ClientRegistry.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/ContextLoader.java b/common/src/main/java/org/red5/server/ContextLoader.java index 7f9b8f5b61aee93cc0ed047af0093f588483e9ff..7e50158a3554c2d005264c72306c0906be510924 100644 --- a/common/src/main/java/org/red5/server/ContextLoader.java +++ b/common/src/main/java/org/red5/server/ContextLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/LoaderBase.java b/common/src/main/java/org/red5/server/LoaderBase.java index 49488806fb6f3dbf6907371dedde28a77b6972c7..f5cfda60a8a952ff74beb790a42bf3e583f29082 100644 --- a/common/src/main/java/org/red5/server/LoaderBase.java +++ b/common/src/main/java/org/red5/server/LoaderBase.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/Server.java b/common/src/main/java/org/red5/server/Server.java index b554a9d461391ac56eeac81a94ec9d497ea62537..66eb559c09e1a2b8d83acd99887dd32eb747f608 100644 --- a/common/src/main/java/org/red5/server/Server.java +++ b/common/src/main/java/org/red5/server/Server.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/adapter/AbstractScopeAdapter.java b/common/src/main/java/org/red5/server/adapter/AbstractScopeAdapter.java index 923b5776f1f58d2f93f89ba7b1404cbf5e601660..9307e6321940f89aa8ae610e685ad17d3528fae3 100644 --- a/common/src/main/java/org/red5/server/adapter/AbstractScopeAdapter.java +++ b/common/src/main/java/org/red5/server/adapter/AbstractScopeAdapter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/adapter/IApplication.java b/common/src/main/java/org/red5/server/adapter/IApplication.java index 298a46a19815affffbcd7a4c13a09d1ee493efaa..15981be42bcd8181a1d0798cfa35e80c0ff20840 100644 --- a/common/src/main/java/org/red5/server/adapter/IApplication.java +++ b/common/src/main/java/org/red5/server/adapter/IApplication.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IApplicationContext.java b/common/src/main/java/org/red5/server/api/IApplicationContext.java index 534b30dab1106a0e9ebdcd4ef45daf905d20d8cf..f9d212a48420ba1b7b3e822471fc5b68e98113d0 100644 --- a/common/src/main/java/org/red5/server/api/IApplicationContext.java +++ b/common/src/main/java/org/red5/server/api/IApplicationContext.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IApplicationLoader.java b/common/src/main/java/org/red5/server/api/IApplicationLoader.java index 47896d4a3367df266151af79ed8357c92800d149..b8b0c6fff5fbae66a437efb5df4817309910f0fc 100644 --- a/common/src/main/java/org/red5/server/api/IApplicationLoader.java +++ b/common/src/main/java/org/red5/server/api/IApplicationLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IAttributeStore.java b/common/src/main/java/org/red5/server/api/IAttributeStore.java index 3bb437a79684e73ba7baf653f97ed5bf9d223092..b8f44e55ce4c5b15554aff95763e13b26ce61a1e 100644 --- a/common/src/main/java/org/red5/server/api/IAttributeStore.java +++ b/common/src/main/java/org/red5/server/api/IAttributeStore.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/ICastingAttributeStore.java b/common/src/main/java/org/red5/server/api/ICastingAttributeStore.java index d74beb923bfae6c19ce78a65de7a61d090ceeed7..50fcbfdccb8a1ab602ba582e04a51a80a1cb2113 100644 --- a/common/src/main/java/org/red5/server/api/ICastingAttributeStore.java +++ b/common/src/main/java/org/red5/server/api/ICastingAttributeStore.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IClient.java b/common/src/main/java/org/red5/server/api/IClient.java index 149df342fdeb901e58b21287bd07d3712a0d1974..523f3f2645015fe4e7a3f26b3ae7672774b92845 100644 --- a/common/src/main/java/org/red5/server/api/IClient.java +++ b/common/src/main/java/org/red5/server/api/IClient.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IClientRegistry.java b/common/src/main/java/org/red5/server/api/IClientRegistry.java index 1e724876698b2de37449ba233a370a4e02d36783..34618dee52da9af49fbf62036dd5822de79a46c3 100644 --- a/common/src/main/java/org/red5/server/api/IClientRegistry.java +++ b/common/src/main/java/org/red5/server/api/IClientRegistry.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IConnection.java b/common/src/main/java/org/red5/server/api/IConnection.java index 555554a1dad874f575d4b596c4511bfd42186c9a..dcbab7a47487034a3ec7fcbcb6d030d38a794ded 100644 --- a/common/src/main/java/org/red5/server/api/IConnection.java +++ b/common/src/main/java/org/red5/server/api/IConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IContext.java b/common/src/main/java/org/red5/server/api/IContext.java index 69c9d2a44530668544b03d4dce0928dbd1a5c29f..c8956bf7a6c4e0b2ed789197360a421736153412 100644 --- a/common/src/main/java/org/red5/server/api/IContext.java +++ b/common/src/main/java/org/red5/server/api/IContext.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/ICoreObject.java b/common/src/main/java/org/red5/server/api/ICoreObject.java index c8ccc742971666e454bda7122c8ba2e87218dddf..48814aa67cbb35e9355025f069380c4086c2ad4b 100644 --- a/common/src/main/java/org/red5/server/api/ICoreObject.java +++ b/common/src/main/java/org/red5/server/api/ICoreObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IMappingStrategy.java b/common/src/main/java/org/red5/server/api/IMappingStrategy.java index e26f4823649b0a541f25e2293d0aceba2e6cb877..39983e73081a2be6432ff6e7f5147f39128bf11b 100644 --- a/common/src/main/java/org/red5/server/api/IMappingStrategy.java +++ b/common/src/main/java/org/red5/server/api/IMappingStrategy.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/IServer.java b/common/src/main/java/org/red5/server/api/IServer.java index e57f5c309b209428fe4118d62459982cc81fe9eb..3886a049319ed2120c4a45db886cb047c914dfb7 100644 --- a/common/src/main/java/org/red5/server/api/IServer.java +++ b/common/src/main/java/org/red5/server/api/IServer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/Red5.java b/common/src/main/java/org/red5/server/api/Red5.java index 96e157190ee2d81d392405bb19a571933e48ffbf..ff2678c0092f6485d41fc7a999d84aa2988f9fcc 100644 --- a/common/src/main/java/org/red5/server/api/Red5.java +++ b/common/src/main/java/org/red5/server/api/Red5.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. @@ -55,12 +55,12 @@ public final class Red5 { /** * Server version with revision */ - public static final String VERSION = "Red5 Server 1.3.24"; + public static final String VERSION = "Red5 Server 1.3.25"; /** * Server version for fmsVer requests */ - public static final String FMS_VERSION = "RED5/1,3,24,0"; + public static final String FMS_VERSION = "RED5/1,3,25,0"; /** * Server capabilities diff --git a/common/src/main/java/org/red5/server/api/event/IEvent.java b/common/src/main/java/org/red5/server/api/event/IEvent.java index c4a844f39f119cb8c4cdc6c0762fc119e59c90c0..3b1b1030e98ab6fe10796562373e65c2b70481e6 100644 --- a/common/src/main/java/org/red5/server/api/event/IEvent.java +++ b/common/src/main/java/org/red5/server/api/event/IEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/event/IEventDispatcher.java b/common/src/main/java/org/red5/server/api/event/IEventDispatcher.java index d0a3e5f9b197fc2afe1d6bc84cb3b5efa4128677..fba242993666fd7183b3587f4055208a2fd50754 100644 --- a/common/src/main/java/org/red5/server/api/event/IEventDispatcher.java +++ b/common/src/main/java/org/red5/server/api/event/IEventDispatcher.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/event/IEventHandler.java b/common/src/main/java/org/red5/server/api/event/IEventHandler.java index 65e07caa6e6edc7c435d995b7de9cc48baa7efd4..dfce39a5c552c25a232824f80518ae25961b4066 100644 --- a/common/src/main/java/org/red5/server/api/event/IEventHandler.java +++ b/common/src/main/java/org/red5/server/api/event/IEventHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/event/IEventListener.java b/common/src/main/java/org/red5/server/api/event/IEventListener.java index 38c92286f6987d0151d5e838d1657409198749ac..6059ce45b82d6c6170d9b0e7ff36e01d9c10c3a5 100644 --- a/common/src/main/java/org/red5/server/api/event/IEventListener.java +++ b/common/src/main/java/org/red5/server/api/event/IEventListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/event/IEventObservable.java b/common/src/main/java/org/red5/server/api/event/IEventObservable.java index b40e24ce2963d92a4f533f046017a2087af1e5d4..2aaafe9ef96825b3df5a3b3d7f60fdee042ffd39 100644 --- a/common/src/main/java/org/red5/server/api/event/IEventObservable.java +++ b/common/src/main/java/org/red5/server/api/event/IEventObservable.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/listeners/IConnectionListener.java b/common/src/main/java/org/red5/server/api/listeners/IConnectionListener.java index eb3a6ae02b72c140270b62c7d0b73e0b57d78e04..33dc1fd83bebdd877673246d9be6920662042425 100644 --- a/common/src/main/java/org/red5/server/api/listeners/IConnectionListener.java +++ b/common/src/main/java/org/red5/server/api/listeners/IConnectionListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/listeners/IScopeListener.java b/common/src/main/java/org/red5/server/api/listeners/IScopeListener.java index 9399abc9188d0fea267204df0771fb1b6b97e393..f705a4f2144f774856d5b9aea3e842b927559d97 100644 --- a/common/src/main/java/org/red5/server/api/listeners/IScopeListener.java +++ b/common/src/main/java/org/red5/server/api/listeners/IScopeListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/persistence/IPersistable.java b/common/src/main/java/org/red5/server/api/persistence/IPersistable.java index f316ead648a5fa1d317352b146498f1575461319..ba2d0731ed3598c1b2cf398a892fad5647b9341c 100644 --- a/common/src/main/java/org/red5/server/api/persistence/IPersistable.java +++ b/common/src/main/java/org/red5/server/api/persistence/IPersistable.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/persistence/IPersistenceStore.java b/common/src/main/java/org/red5/server/api/persistence/IPersistenceStore.java index 30a90a7b4da1a03767a7551acc8c72354e57b28f..43899e2d7db110395fa7f732b8ab1b0912c54ee7 100644 --- a/common/src/main/java/org/red5/server/api/persistence/IPersistenceStore.java +++ b/common/src/main/java/org/red5/server/api/persistence/IPersistenceStore.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/persistence/PersistenceUtils.java b/common/src/main/java/org/red5/server/api/persistence/PersistenceUtils.java index 16d3df22f2cf6ce05b4033054a318c4fcdf9c693..43edb05adb99fbea959b441edbdd93d6b5b67674 100644 --- a/common/src/main/java/org/red5/server/api/persistence/PersistenceUtils.java +++ b/common/src/main/java/org/red5/server/api/persistence/PersistenceUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/plugin/IRed5Plugin.java b/common/src/main/java/org/red5/server/api/plugin/IRed5Plugin.java index 114e1192eb4713f5332436f1dbc8dc8d443c72de..c72b1c5c01fd2d2aef6c7dae1236c9d40dc7c9c1 100644 --- a/common/src/main/java/org/red5/server/api/plugin/IRed5Plugin.java +++ b/common/src/main/java/org/red5/server/api/plugin/IRed5Plugin.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/plugin/IRed5PluginHandler.java b/common/src/main/java/org/red5/server/api/plugin/IRed5PluginHandler.java index ce301b836c91ff0f49ca9ae0a80c738705db760f..5f9ee2260831652909f87f588be0427238483c42 100644 --- a/common/src/main/java/org/red5/server/api/plugin/IRed5PluginHandler.java +++ b/common/src/main/java/org/red5/server/api/plugin/IRed5PluginHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/remoting/IRemotingHeader.java b/common/src/main/java/org/red5/server/api/remoting/IRemotingHeader.java index 9b9d230ba378cde59cb10ff9e2294ec128499264..f1f3639c8656417a8cc6043e191b46564bf93f07 100644 --- a/common/src/main/java/org/red5/server/api/remoting/IRemotingHeader.java +++ b/common/src/main/java/org/red5/server/api/remoting/IRemotingHeader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scheduling/IScheduledJob.java b/common/src/main/java/org/red5/server/api/scheduling/IScheduledJob.java index db083dd018d2ad3e40ccfa8ecce44d181e233c36..d25d330680d27a6aaaa356182310724a3ace7316 100644 --- a/common/src/main/java/org/red5/server/api/scheduling/IScheduledJob.java +++ b/common/src/main/java/org/red5/server/api/scheduling/IScheduledJob.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scheduling/ISchedulingService.java b/common/src/main/java/org/red5/server/api/scheduling/ISchedulingService.java index 41378f274510df1b0a67cd44bfb1d24ef83ad275..b21d5609d2a98f428d2f4fd4afc34abb588e053c 100644 --- a/common/src/main/java/org/red5/server/api/scheduling/ISchedulingService.java +++ b/common/src/main/java/org/red5/server/api/scheduling/ISchedulingService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IBasicScope.java b/common/src/main/java/org/red5/server/api/scope/IBasicScope.java index 0ff75a95d1d61e637aac15a90a96fb284db4364e..c818d57a8e18d7f7913531786bb668ba866a2bc0 100644 --- a/common/src/main/java/org/red5/server/api/scope/IBasicScope.java +++ b/common/src/main/java/org/red5/server/api/scope/IBasicScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IBroadcastScope.java b/common/src/main/java/org/red5/server/api/scope/IBroadcastScope.java index b9af7ecf7f3af9b787c938e5d4bbdb05ee60c073..7ea07c24cb91a77db076d17cb992b53142cf0411 100644 --- a/common/src/main/java/org/red5/server/api/scope/IBroadcastScope.java +++ b/common/src/main/java/org/red5/server/api/scope/IBroadcastScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IGlobalScope.java b/common/src/main/java/org/red5/server/api/scope/IGlobalScope.java index 3c228c378cd3d55dac8996d5c7364cb5dad9c92a..ba41bd4da0d85324c1b28b807d94775978628b87 100644 --- a/common/src/main/java/org/red5/server/api/scope/IGlobalScope.java +++ b/common/src/main/java/org/red5/server/api/scope/IGlobalScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IScope.java b/common/src/main/java/org/red5/server/api/scope/IScope.java index 0f3ae5b936f260a29b0dc38e7060dbc81c278d8f..97f95c8ac2fd2a3db201e5db97d9a31433c0f3d0 100644 --- a/common/src/main/java/org/red5/server/api/scope/IScope.java +++ b/common/src/main/java/org/red5/server/api/scope/IScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IScopeAware.java b/common/src/main/java/org/red5/server/api/scope/IScopeAware.java index 7fed170bbf1141f97fb340aa2ad758500beb977b..e83e5ecc3d4f83e8193259a1c9018beb9ed95e96 100644 --- a/common/src/main/java/org/red5/server/api/scope/IScopeAware.java +++ b/common/src/main/java/org/red5/server/api/scope/IScopeAware.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IScopeHandler.java b/common/src/main/java/org/red5/server/api/scope/IScopeHandler.java index fbca20d794a340f8e3e748c67b3cd6a8c40b0a53..06b88d4707e511cfb4ea2e74d2c1411043b73658 100644 --- a/common/src/main/java/org/red5/server/api/scope/IScopeHandler.java +++ b/common/src/main/java/org/red5/server/api/scope/IScopeHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IScopeSecurityHandler.java b/common/src/main/java/org/red5/server/api/scope/IScopeSecurityHandler.java index 732cd7cd1d397f1b5beb5ece5c0dd393685ee349..2afcce128c8019601c7f0f2d4bbfa8173507ef77 100644 --- a/common/src/main/java/org/red5/server/api/scope/IScopeSecurityHandler.java +++ b/common/src/main/java/org/red5/server/api/scope/IScopeSecurityHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/scope/IScopeService.java b/common/src/main/java/org/red5/server/api/scope/IScopeService.java index 0fdac9638ccb301934a9529f47340edd20db22ca..a9accdd7949790767ae16bc9fed3f26be2aeb5f4 100644 --- a/common/src/main/java/org/red5/server/api/scope/IScopeService.java +++ b/common/src/main/java/org/red5/server/api/scope/IScopeService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IBroadcastStreamService.java b/common/src/main/java/org/red5/server/api/service/IBroadcastStreamService.java index 271dca78dd95a9eb0f4c9cfd1a61f932748a894b..292c72b50293e1d08bdf7b7b3cf3ed19bf8c3a1f 100644 --- a/common/src/main/java/org/red5/server/api/service/IBroadcastStreamService.java +++ b/common/src/main/java/org/red5/server/api/service/IBroadcastStreamService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IOnDemandStreamService.java b/common/src/main/java/org/red5/server/api/service/IOnDemandStreamService.java index 25f9f888ee6cc17ad4d447bc5b7d0a4e5909d066..4a2cfd3aec867a342fd9270957c8615003ffc01e 100644 --- a/common/src/main/java/org/red5/server/api/service/IOnDemandStreamService.java +++ b/common/src/main/java/org/red5/server/api/service/IOnDemandStreamService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IPendingServiceCall.java b/common/src/main/java/org/red5/server/api/service/IPendingServiceCall.java index 2e6cdc9a6c0d33d5e3eb4315c9ea21c8b7530592..1fc3a2340fb5852119faa14d2b2eaa0b0a7a223f 100644 --- a/common/src/main/java/org/red5/server/api/service/IPendingServiceCall.java +++ b/common/src/main/java/org/red5/server/api/service/IPendingServiceCall.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IPendingServiceCallback.java b/common/src/main/java/org/red5/server/api/service/IPendingServiceCallback.java index 72e7fe3b6a24494e2b90a9f9a46ba9678a60209e..91735f2ed258c3aeb0a406574538410393575e88 100644 --- a/common/src/main/java/org/red5/server/api/service/IPendingServiceCallback.java +++ b/common/src/main/java/org/red5/server/api/service/IPendingServiceCallback.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IServiceCall.java b/common/src/main/java/org/red5/server/api/service/IServiceCall.java index 9b845b563fc6b1a983a12e99a0a35f7048c2c2e7..d3cae4e5b99d4494b5b476ac7fa1f08720f947d9 100644 --- a/common/src/main/java/org/red5/server/api/service/IServiceCall.java +++ b/common/src/main/java/org/red5/server/api/service/IServiceCall.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IServiceCapableConnection.java b/common/src/main/java/org/red5/server/api/service/IServiceCapableConnection.java index d4434111bf910bc346c2e16ca77429aa15777431..aca7d65c01304ee677cc01068947af7c389b5e67 100644 --- a/common/src/main/java/org/red5/server/api/service/IServiceCapableConnection.java +++ b/common/src/main/java/org/red5/server/api/service/IServiceCapableConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IServiceHandlerProvider.java b/common/src/main/java/org/red5/server/api/service/IServiceHandlerProvider.java index 0371584bd48b86bebbc12866cbaff7e138e18f54..ce1506ef76fbfad06b504898285c1e4fb455f756 100644 --- a/common/src/main/java/org/red5/server/api/service/IServiceHandlerProvider.java +++ b/common/src/main/java/org/red5/server/api/service/IServiceHandlerProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IServiceHandlerProviderAware.java b/common/src/main/java/org/red5/server/api/service/IServiceHandlerProviderAware.java index c86f9f8297adebf91c911c32ec71e741f82bc41e..abbeef8ae58e46232b75b6e6558cf550d967c9c9 100644 --- a/common/src/main/java/org/red5/server/api/service/IServiceHandlerProviderAware.java +++ b/common/src/main/java/org/red5/server/api/service/IServiceHandlerProviderAware.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IServiceInvoker.java b/common/src/main/java/org/red5/server/api/service/IServiceInvoker.java index b3e580832561a9dc3bd681351e42e253c5dbb565..b267c7f64ac759146ae875c9968816b8051ff0c6 100644 --- a/common/src/main/java/org/red5/server/api/service/IServiceInvoker.java +++ b/common/src/main/java/org/red5/server/api/service/IServiceInvoker.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IStreamSecurityService.java b/common/src/main/java/org/red5/server/api/service/IStreamSecurityService.java index dd0eda89645b2897a2c902a65169c74f75f12b11..83d0748532e71b07a4b7c3214e7215dbaba5d558 100644 --- a/common/src/main/java/org/red5/server/api/service/IStreamSecurityService.java +++ b/common/src/main/java/org/red5/server/api/service/IStreamSecurityService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/IStreamableFileService.java b/common/src/main/java/org/red5/server/api/service/IStreamableFileService.java index 52a811fd01130a5fbb78fd725a7ed91a41ce447d..5aa1bd4d0728fe22959bcdd9546e036a342e9d8c 100644 --- a/common/src/main/java/org/red5/server/api/service/IStreamableFileService.java +++ b/common/src/main/java/org/red5/server/api/service/IStreamableFileService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/ISubscriberStreamService.java b/common/src/main/java/org/red5/server/api/service/ISubscriberStreamService.java index 61a581b31a18769b06b1a2e72912cecbb90329ed..2f92139ea08c5fbea909efb96792e4b9c9d272bd 100644 --- a/common/src/main/java/org/red5/server/api/service/ISubscriberStreamService.java +++ b/common/src/main/java/org/red5/server/api/service/ISubscriberStreamService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/service/ServiceUtils.java b/common/src/main/java/org/red5/server/api/service/ServiceUtils.java index 7c0a328e7aa83c12ca8ad28a5bba6a3a9be2b74f..17f9f1e4dabb963e26b8e801dc22141ba2a813b4 100644 --- a/common/src/main/java/org/red5/server/api/service/ServiceUtils.java +++ b/common/src/main/java/org/red5/server/api/service/ServiceUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/IClientSharedObject.java b/common/src/main/java/org/red5/server/api/so/IClientSharedObject.java index cd057f428bd0241a08bc217ff5da758a8dd19aa9..35d188dcd2ec47421b9c67479ba2bbd4a60db18e 100644 --- a/common/src/main/java/org/red5/server/api/so/IClientSharedObject.java +++ b/common/src/main/java/org/red5/server/api/so/IClientSharedObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObject.java b/common/src/main/java/org/red5/server/api/so/ISharedObject.java index 3bac3211b62574017352f1136dc088542855fd61..423084223f33bd73348b8c14f41e3a3386ecd795 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObject.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObjectBase.java b/common/src/main/java/org/red5/server/api/so/ISharedObjectBase.java index 97cb918c8772317523ef980f1ee22acf4f2609b6..eba784b7fe137f0d53bb43c79734faa18dd6df35 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObjectBase.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObjectBase.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObjectHandlerProvider.java b/common/src/main/java/org/red5/server/api/so/ISharedObjectHandlerProvider.java index 7549a0fdcf7051b4c40d8226536e7b92ba640e7c..6e8225930fbca41011f86eeda92f76dfcd51be0c 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObjectHandlerProvider.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObjectHandlerProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObjectListener.java b/common/src/main/java/org/red5/server/api/so/ISharedObjectListener.java index ecacd66fe34835bf6ab09eb4eba0f7ceda497f68..be117b79936b0498cab78c4e311b0a93cc225161 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObjectListener.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObjectListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurity.java b/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurity.java index 8b1d12547dd04dad362118d45fb0b253a270bbe8..2e94e6aa686308617cd1bd0abc670c0815527abb 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurity.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurity.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurityService.java b/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurityService.java index 18932ff364f2476de98af007c8f0e82359fccdaf..80cad5c5428d7717952518fcd1ad3d6d712d280b 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurityService.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObjectSecurityService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/so/ISharedObjectService.java b/common/src/main/java/org/red5/server/api/so/ISharedObjectService.java index e51af8f116f5b881feff4cfe1389937d1b5f11e9..b161b3d9ac4709bfea753a901e04a5af9cdad1c2 100644 --- a/common/src/main/java/org/red5/server/api/so/ISharedObjectService.java +++ b/common/src/main/java/org/red5/server/api/so/ISharedObjectService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/IClientBroadcastStreamStatistics.java b/common/src/main/java/org/red5/server/api/statistics/IClientBroadcastStreamStatistics.java index 51f95538aa5059a84f78673f57f641803d0b2395..3e90dbcef851eec2cb62f5fbcc32ecaf6cc85986 100644 --- a/common/src/main/java/org/red5/server/api/statistics/IClientBroadcastStreamStatistics.java +++ b/common/src/main/java/org/red5/server/api/statistics/IClientBroadcastStreamStatistics.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/IPlaylistSubscriberStreamStatistics.java b/common/src/main/java/org/red5/server/api/statistics/IPlaylistSubscriberStreamStatistics.java index 0e698deb0cb7ebb71876a405322e2a14755e3944..2266e0a54cb3fa73eaa61538f31012879311ba8d 100644 --- a/common/src/main/java/org/red5/server/api/statistics/IPlaylistSubscriberStreamStatistics.java +++ b/common/src/main/java/org/red5/server/api/statistics/IPlaylistSubscriberStreamStatistics.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/IScopeStatistics.java b/common/src/main/java/org/red5/server/api/statistics/IScopeStatistics.java index 4364c6f99535d24a4ad83867413bcf85a38b7ec7..d0cd91ff822bfbd8f6770c639cd257ee4686cc7f 100644 --- a/common/src/main/java/org/red5/server/api/statistics/IScopeStatistics.java +++ b/common/src/main/java/org/red5/server/api/statistics/IScopeStatistics.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/ISharedObjectStatistics.java b/common/src/main/java/org/red5/server/api/statistics/ISharedObjectStatistics.java index cc8cede89633ffc7ac34d351aaee730d7f1b31c6..bf39cb2008d7c6584a5e87a96182847ad8b590d6 100644 --- a/common/src/main/java/org/red5/server/api/statistics/ISharedObjectStatistics.java +++ b/common/src/main/java/org/red5/server/api/statistics/ISharedObjectStatistics.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/IStatisticsBase.java b/common/src/main/java/org/red5/server/api/statistics/IStatisticsBase.java index cdf93186135383cb3d5d4ac4526de5b4887f575e..5170b693a66f73cd14264eeef2275fc7ce143469 100644 --- a/common/src/main/java/org/red5/server/api/statistics/IStatisticsBase.java +++ b/common/src/main/java/org/red5/server/api/statistics/IStatisticsBase.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/IStreamStatistics.java b/common/src/main/java/org/red5/server/api/statistics/IStreamStatistics.java index f1f581124b8406d9e30694aeee98759d4bae000a..571c8cb36b190b074a8bb01d5a3fdc9fa3980a4a 100644 --- a/common/src/main/java/org/red5/server/api/statistics/IStreamStatistics.java +++ b/common/src/main/java/org/red5/server/api/statistics/IStreamStatistics.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/statistics/support/StatisticsCounter.java b/common/src/main/java/org/red5/server/api/statistics/support/StatisticsCounter.java index 4b7915fe4367e22bf6ecd9796ea747ca7a745730..e5b16c700df72390a8f65bd3ec2dba69aa6ebbe0 100644 --- a/common/src/main/java/org/red5/server/api/statistics/support/StatisticsCounter.java +++ b/common/src/main/java/org/red5/server/api/statistics/support/StatisticsCounter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IBroadcastStream.java b/common/src/main/java/org/red5/server/api/stream/IBroadcastStream.java index dd5973c343436b33e1eec5c8534d66c47e1e9cbd..7ef704cad16e064e9048f34a99617689c0c47be8 100644 --- a/common/src/main/java/org/red5/server/api/stream/IBroadcastStream.java +++ b/common/src/main/java/org/red5/server/api/stream/IBroadcastStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IClientBroadcastStream.java b/common/src/main/java/org/red5/server/api/stream/IClientBroadcastStream.java index df5c0e95170c44c144fff6dcfb1efe0ee3fa387b..2f8acbff1cb9b595a6426d45d93017104fe2b25f 100644 --- a/common/src/main/java/org/red5/server/api/stream/IClientBroadcastStream.java +++ b/common/src/main/java/org/red5/server/api/stream/IClientBroadcastStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IClientStream.java b/common/src/main/java/org/red5/server/api/stream/IClientStream.java index ab736a4b86cd7b0d07e3530d259b4aa867085a2e..5675c74b9ed167dcd0ca8ddd730b6ada5c9c6762 100644 --- a/common/src/main/java/org/red5/server/api/stream/IClientStream.java +++ b/common/src/main/java/org/red5/server/api/stream/IClientStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IOnDemandStream.java b/common/src/main/java/org/red5/server/api/stream/IOnDemandStream.java index 5f8a7e57e053e2e992d873cc2e034da1c96b7efa..27374ca460474b76d988b6ce630312fdab33177b 100644 --- a/common/src/main/java/org/red5/server/api/stream/IOnDemandStream.java +++ b/common/src/main/java/org/red5/server/api/stream/IOnDemandStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IPlayItem.java b/common/src/main/java/org/red5/server/api/stream/IPlayItem.java index fbdeffa652805589fc288cb016d93465d98e2a12..cad4042250539b4184d28005970b24e44648483f 100644 --- a/common/src/main/java/org/red5/server/api/stream/IPlayItem.java +++ b/common/src/main/java/org/red5/server/api/stream/IPlayItem.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IPlaylist.java b/common/src/main/java/org/red5/server/api/stream/IPlaylist.java index 96699d8ac4c1d59fefebbc711bc5439652a35a32..268327ea717c6ce7e7fc5b6d407c51fdffddcdc6 100644 --- a/common/src/main/java/org/red5/server/api/stream/IPlaylist.java +++ b/common/src/main/java/org/red5/server/api/stream/IPlaylist.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IPlaylistController.java b/common/src/main/java/org/red5/server/api/stream/IPlaylistController.java index 6f7bd16d4996157735ca90e1342f0499285a3b0c..d0aadbacee1ac5f3b039f0adb7963538947f9cd9 100644 --- a/common/src/main/java/org/red5/server/api/stream/IPlaylistController.java +++ b/common/src/main/java/org/red5/server/api/stream/IPlaylistController.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IPlaylistSubscriberStream.java b/common/src/main/java/org/red5/server/api/stream/IPlaylistSubscriberStream.java index d5e32020db116acfd6134b8e471a5fdc79cb6f57..49b6a3c75332a454ecfc6dc5fc59e4390166299a 100644 --- a/common/src/main/java/org/red5/server/api/stream/IPlaylistSubscriberStream.java +++ b/common/src/main/java/org/red5/server/api/stream/IPlaylistSubscriberStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IRtmpSampleAccess.java b/common/src/main/java/org/red5/server/api/stream/IRtmpSampleAccess.java index 1b89057acab94eb1ae02032d8328558674948375..178d662db0accec958197f8415d93469783b6858 100644 --- a/common/src/main/java/org/red5/server/api/stream/IRtmpSampleAccess.java +++ b/common/src/main/java/org/red5/server/api/stream/IRtmpSampleAccess.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/ISingleItemSubscriberStream.java b/common/src/main/java/org/red5/server/api/stream/ISingleItemSubscriberStream.java index 0b206014ed45768ad09fe83d90f124396e0f9f6f..a5212e1afa04a62cbe436806b4fd58b2ff9aa80f 100644 --- a/common/src/main/java/org/red5/server/api/stream/ISingleItemSubscriberStream.java +++ b/common/src/main/java/org/red5/server/api/stream/ISingleItemSubscriberStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStream.java b/common/src/main/java/org/red5/server/api/stream/IStream.java index ba5c0d93ba69c0c15122151399fefeb429c4a005..f05d9ee27b24aac49d7bb87d0fd5c5d2aefe1eb2 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStream.java +++ b/common/src/main/java/org/red5/server/api/stream/IStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamAwareScopeHandler.java b/common/src/main/java/org/red5/server/api/stream/IStreamAwareScopeHandler.java index 976b93b70c260609b1c4502b22b3cc0bfae43800..7755e5fed18c857dccdd783333bb6e64d3943cf0 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamAwareScopeHandler.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamAwareScopeHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamCapableConnection.java b/common/src/main/java/org/red5/server/api/stream/IStreamCapableConnection.java index 3fb1ab4fbb4d4748d2d9fbc3274478b8a01d7c9b..7b92dd1e52b1e7794330e3419a8b6ae171e970fd 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamCapableConnection.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamCapableConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamFilenameGenerator.java b/common/src/main/java/org/red5/server/api/stream/IStreamFilenameGenerator.java index de151ec76216880a91882c897a49e27fc28a3638..324b0126b406007a2ca030879b38f5d65910f1ff 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamFilenameGenerator.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamFilenameGenerator.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamListener.java b/common/src/main/java/org/red5/server/api/stream/IStreamListener.java index 3aa65267c4973a142bf1ef7b801adfa67db1a896..e54b932b038c47f1c2da28d5d3989f071236ef76 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamListener.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamPacket.java b/common/src/main/java/org/red5/server/api/stream/IStreamPacket.java index 1677c7c0e1b74a421b088edc767565799684b051..0af54598bcb01529b3be723551e0f899ca4d1b9c 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamPacket.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamPacket.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamPlaybackSecurity.java b/common/src/main/java/org/red5/server/api/stream/IStreamPlaybackSecurity.java index 5dc2550c35003d71cb49b4b8cdf1b2661a864fa8..5209ad036cf2f1dd0d008e4687e0d3a11cc10344 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamPlaybackSecurity.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamPlaybackSecurity.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamPublishSecurity.java b/common/src/main/java/org/red5/server/api/stream/IStreamPublishSecurity.java index 780820a6e1746f2b0d900cbb5125f21c540c50ee..016a5cab35711f0e4272205dd84c9e8725d17a7d 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamPublishSecurity.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamPublishSecurity.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamService.java b/common/src/main/java/org/red5/server/api/stream/IStreamService.java index c919e8fb235a9eceae7fcd47704f17eb76d1f50a..ec7143a237b9ebe28b8cbfdead26176bc437f1a7 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamService.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/IStreamableFileFactory.java b/common/src/main/java/org/red5/server/api/stream/IStreamableFileFactory.java index 67eff1db9681415b46b4606c2d634ba55342d9ab..68fa2554138e3013f2186b166a1cf16a3f29398c 100644 --- a/common/src/main/java/org/red5/server/api/stream/IStreamableFileFactory.java +++ b/common/src/main/java/org/red5/server/api/stream/IStreamableFileFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/ISubscriberStream.java b/common/src/main/java/org/red5/server/api/stream/ISubscriberStream.java index c496564e94f3fc185f39de4dbb9653857d64eeb3..b66b40dd6fa8abf638871df41616dee83932f8db 100644 --- a/common/src/main/java/org/red5/server/api/stream/ISubscriberStream.java +++ b/common/src/main/java/org/red5/server/api/stream/ISubscriberStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/OperationNotSupportedException.java b/common/src/main/java/org/red5/server/api/stream/OperationNotSupportedException.java index f84fb5ee1a6bf615b30246dfd05db9a7d29605dd..624404e8d0919108e142082352a5e05b12518457 100644 --- a/common/src/main/java/org/red5/server/api/stream/OperationNotSupportedException.java +++ b/common/src/main/java/org/red5/server/api/stream/OperationNotSupportedException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/ResourceExistException.java b/common/src/main/java/org/red5/server/api/stream/ResourceExistException.java index a7f684a65b34031beed784abb9caca1f60ad04a1..7fa313b06f4654f4b18d4b8405e241ef157df18e 100644 --- a/common/src/main/java/org/red5/server/api/stream/ResourceExistException.java +++ b/common/src/main/java/org/red5/server/api/stream/ResourceExistException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/ResourceNotFoundException.java b/common/src/main/java/org/red5/server/api/stream/ResourceNotFoundException.java index a4c56940ff53805029c11d1b9fbde567693015f8..13dd48e9d948dc9c73d4013853c7f13fccf0cf8e 100644 --- a/common/src/main/java/org/red5/server/api/stream/ResourceNotFoundException.java +++ b/common/src/main/java/org/red5/server/api/stream/ResourceNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/StreamState.java b/common/src/main/java/org/red5/server/api/stream/StreamState.java index 5746095e15a95cf9d045b2ce0a123c94c1962b10..ed3b127bc45e47445074b2379c1d247b44a25c59 100644 --- a/common/src/main/java/org/red5/server/api/stream/StreamState.java +++ b/common/src/main/java/org/red5/server/api/stream/StreamState.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/support/DynamicPlayItem.java b/common/src/main/java/org/red5/server/api/stream/support/DynamicPlayItem.java index ca4502130f0526eff7377674f3c37a7d4a062203..e72fcce0e6c3e470084ffc58675df525675e0830 100644 --- a/common/src/main/java/org/red5/server/api/stream/support/DynamicPlayItem.java +++ b/common/src/main/java/org/red5/server/api/stream/support/DynamicPlayItem.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/api/stream/support/SimplePlayItem.java b/common/src/main/java/org/red5/server/api/stream/support/SimplePlayItem.java index acd9c1e0f5f108bc3a92766c7dfe63f38596c8dc..9a11dfbabeced508870cf8051e6f6882dbed9890 100644 --- a/common/src/main/java/org/red5/server/api/stream/support/SimplePlayItem.java +++ b/common/src/main/java/org/red5/server/api/stream/support/SimplePlayItem.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/exception/ClientDetailsException.java b/common/src/main/java/org/red5/server/exception/ClientDetailsException.java index 5af065a2188710ce42bb7a8d7c449e228f2c8790..7fee93ede4e50f510024ed738d69e23b85a1e840 100644 --- a/common/src/main/java/org/red5/server/exception/ClientDetailsException.java +++ b/common/src/main/java/org/red5/server/exception/ClientDetailsException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/exception/ClientNotFoundException.java b/common/src/main/java/org/red5/server/exception/ClientNotFoundException.java index ea35da5b42b023526d21eb6404a9566921c4e104..a7f554a4b0598856de57892e693531b8cdaffe23 100644 --- a/common/src/main/java/org/red5/server/exception/ClientNotFoundException.java +++ b/common/src/main/java/org/red5/server/exception/ClientNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/exception/ClientRejectedException.java b/common/src/main/java/org/red5/server/exception/ClientRejectedException.java index e3ff2c215e9cceed51ba605504f12d58b4d0089d..2605e57fad4eaf00bb3828edb16f8f4373d16717 100644 --- a/common/src/main/java/org/red5/server/exception/ClientRejectedException.java +++ b/common/src/main/java/org/red5/server/exception/ClientRejectedException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/exception/ScopeException.java b/common/src/main/java/org/red5/server/exception/ScopeException.java index 64d10bc5cb53f226d648d315c7e1ea7316a817ea..32bf4ade28f621c9a2f3886b9b2ddab79e701e89 100644 --- a/common/src/main/java/org/red5/server/exception/ScopeException.java +++ b/common/src/main/java/org/red5/server/exception/ScopeException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/exception/ScopeNotFoundException.java b/common/src/main/java/org/red5/server/exception/ScopeNotFoundException.java index 3bfa2b0a5dc24c17602352dcd8a4f45e120b54f5..ef5069e19dc1e85fbf91a4849b790d8f9aab0359 100644 --- a/common/src/main/java/org/red5/server/exception/ScopeNotFoundException.java +++ b/common/src/main/java/org/red5/server/exception/ScopeNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/exception/ScopeShuttingDownException.java b/common/src/main/java/org/red5/server/exception/ScopeShuttingDownException.java index ea79215f1620ddaa427bc93448ffd9fce9e5bdad..9dee82137e015dfb38238327de319a2d95ec6fb9 100644 --- a/common/src/main/java/org/red5/server/exception/ScopeShuttingDownException.java +++ b/common/src/main/java/org/red5/server/exception/ScopeShuttingDownException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/ApplicationMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/ApplicationMXBean.java index a8677910df8cb98a217efb39abcf3f402918e649..490ba9c29ca2bdb29308f15cfb436503abd5ea08 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/ApplicationMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/ApplicationMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/AttributeStoreMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/AttributeStoreMXBean.java index e4c1fd5cbcd7115b75dbee6d1770db0d15eb0dce..8b6ad6235f0aa113d3ac734c9cdf6ed7274685db 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/AttributeStoreMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/AttributeStoreMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/ClientBroadcastStreamMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/ClientBroadcastStreamMXBean.java index e55eaca722704c12e113c2d08b54ded32100139b..1a3e42a486289bd7469343755f8f52572c2b1290 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/ClientBroadcastStreamMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/ClientBroadcastStreamMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/ClientRegistryMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/ClientRegistryMXBean.java index 2b6b1e23d9ca72ca9d8ce106192dd5b02201f7f9..9ba8f66f4e68d78806b958f5921061c15581f147 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/ClientRegistryMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/ClientRegistryMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/ContextLoaderMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/ContextLoaderMXBean.java index 3b379c40d95760b26c79c4d3c32585bc3477404f..e1709178073897989253e4dee898865a514e2f0c 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/ContextLoaderMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/ContextLoaderMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/JDKSchedulingServiceMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/JDKSchedulingServiceMXBean.java index 77e59cd37183a129b5572d8a92f652bd12de5ffb..22294eddb5c8a5c879eaee574a1472d414a267fb 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/JDKSchedulingServiceMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/JDKSchedulingServiceMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/LoaderMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/LoaderMXBean.java index 87ee27f9ed3a3447d8e65ccd572bc0e26b27777e..2cef12e26b7faad6a2e0c9772e3a594093473ed2 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/LoaderMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/LoaderMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPConnectionMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPConnectionMXBean.java index 5a0e0868b08183f4e3fbee2a3564ed990bbb407e..313feb8210cddfa5895b0af30bd444aba21d411d 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPConnectionMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPConnectionMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaConnectionMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaConnectionMXBean.java index c355b49726f80df6e5d6e2ddb36dd13b163945b7..935daed8f766cf0e13490cf8ef3e40cb6abd8ff2 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaConnectionMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaConnectionMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaTransportMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaTransportMXBean.java index c1bf5e7bd3368d08704555f676ca579a7bdbeab7..5ffb01926ea6d1cec786e370602d256d4bdf0c91 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaTransportMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/RTMPMinaTransportMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/ScopeMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/ScopeMXBean.java index ed59b45da5ff7a51d02940d1b02a1bb71a865160..a25db784bbef140000f5926540c6e44b2639def7 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/ScopeMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/ScopeMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/jmx/mxbeans/ShutdownMXBean.java b/common/src/main/java/org/red5/server/jmx/mxbeans/ShutdownMXBean.java index 683a06b678f9136a5e2471687688240b405c0fbf..685b6389d4f5734f13bab73e759dd6d664d4e13f 100644 --- a/common/src/main/java/org/red5/server/jmx/mxbeans/ShutdownMXBean.java +++ b/common/src/main/java/org/red5/server/jmx/mxbeans/ShutdownMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/AbstractMessage.java b/common/src/main/java/org/red5/server/messaging/AbstractMessage.java index 2c959eecfe288cdf8eefb91c6dd7adfa884c15e0..f2de3799bb851d84494f8c7c7ee3473c32375e5d 100644 --- a/common/src/main/java/org/red5/server/messaging/AbstractMessage.java +++ b/common/src/main/java/org/red5/server/messaging/AbstractMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/AbstractPipe.java b/common/src/main/java/org/red5/server/messaging/AbstractPipe.java index 6d089dc1121996fb8f7f9a09008d78b3841ff08a..588077cbac1fe6b5b94ccc432eb8ff6f228456ed 100644 --- a/common/src/main/java/org/red5/server/messaging/AbstractPipe.java +++ b/common/src/main/java/org/red5/server/messaging/AbstractPipe.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IConsumer.java b/common/src/main/java/org/red5/server/messaging/IConsumer.java index 2ad41383267cf4983e58d9cc1c9b104552643635..4f251ce502d1fdb02c5e80761f67e633dd987b2e 100644 --- a/common/src/main/java/org/red5/server/messaging/IConsumer.java +++ b/common/src/main/java/org/red5/server/messaging/IConsumer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IFilter.java b/common/src/main/java/org/red5/server/messaging/IFilter.java index 46ea3dc7512816dc24dbb54400957f8cbfaf5e35..88482ecd7af313084ef2c8c21addedc85d4302fa 100644 --- a/common/src/main/java/org/red5/server/messaging/IFilter.java +++ b/common/src/main/java/org/red5/server/messaging/IFilter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IMessage.java b/common/src/main/java/org/red5/server/messaging/IMessage.java index 613d0c00884697035eff894a9a9c1f6d9d6176e2..5aa4f2edaac77e36ecaa7ab5bac934177a3f43d1 100644 --- a/common/src/main/java/org/red5/server/messaging/IMessage.java +++ b/common/src/main/java/org/red5/server/messaging/IMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IMessageComponent.java b/common/src/main/java/org/red5/server/messaging/IMessageComponent.java index 970c01e84847053d0756cbfab5f0b759abe182fd..2b725bec329b9f394f2d23ee2f7b6098563ee795 100644 --- a/common/src/main/java/org/red5/server/messaging/IMessageComponent.java +++ b/common/src/main/java/org/red5/server/messaging/IMessageComponent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IMessageInput.java b/common/src/main/java/org/red5/server/messaging/IMessageInput.java index 0deb4af32f1ae3782ba8bdb352acada68a6c36ad..d7f1fbe0d2ec259358938bf3d4bd6346bfa0f3ac 100644 --- a/common/src/main/java/org/red5/server/messaging/IMessageInput.java +++ b/common/src/main/java/org/red5/server/messaging/IMessageInput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IMessageOutput.java b/common/src/main/java/org/red5/server/messaging/IMessageOutput.java index 93181184b560f34bc99bec80291132e4c85839fa..7ad6358f2aad82deccbe05480d2b82b831592e20 100644 --- a/common/src/main/java/org/red5/server/messaging/IMessageOutput.java +++ b/common/src/main/java/org/red5/server/messaging/IMessageOutput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IPassive.java b/common/src/main/java/org/red5/server/messaging/IPassive.java index 1f4a817d09d93b1e13b179e269910170d95e834f..842f83e607462ab84f948b67dfb05828cf77ccb1 100644 --- a/common/src/main/java/org/red5/server/messaging/IPassive.java +++ b/common/src/main/java/org/red5/server/messaging/IPassive.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IPipe.java b/common/src/main/java/org/red5/server/messaging/IPipe.java index 936051975a5a14ed4ebfa61b84300057534136d5..7e49acf4b512c2ead16a066399306513450edc3c 100644 --- a/common/src/main/java/org/red5/server/messaging/IPipe.java +++ b/common/src/main/java/org/red5/server/messaging/IPipe.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IPipeConnectionListener.java b/common/src/main/java/org/red5/server/messaging/IPipeConnectionListener.java index fc6c78f4eac03d568c0dcec44f9364792657593a..69f70598b86b012fd2da9a82f7ef98ef69fc3198 100644 --- a/common/src/main/java/org/red5/server/messaging/IPipeConnectionListener.java +++ b/common/src/main/java/org/red5/server/messaging/IPipeConnectionListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IProvider.java b/common/src/main/java/org/red5/server/messaging/IProvider.java index c828fb1f91cb7b3d075fac3fe0d0697b0d579dd3..f2a90fb266c9c288ce2a248cc6b366bc0e8c8703 100644 --- a/common/src/main/java/org/red5/server/messaging/IProvider.java +++ b/common/src/main/java/org/red5/server/messaging/IProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/IPushableConsumer.java b/common/src/main/java/org/red5/server/messaging/IPushableConsumer.java index 409717d9ffcd029f7b83925bd82e8b796526bf5e..d78fdf312c9653abcb93a0bab5b23c37e6a4324e 100644 --- a/common/src/main/java/org/red5/server/messaging/IPushableConsumer.java +++ b/common/src/main/java/org/red5/server/messaging/IPushableConsumer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/InMemoryPushPushPipe.java b/common/src/main/java/org/red5/server/messaging/InMemoryPushPushPipe.java index c530779cec0ebcb2c9a400420a2393b4a17a1468..1da8958f991cdfa9a76988b255237bc58b40a750 100644 --- a/common/src/main/java/org/red5/server/messaging/InMemoryPushPushPipe.java +++ b/common/src/main/java/org/red5/server/messaging/InMemoryPushPushPipe.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/OOBControlMessage.java b/common/src/main/java/org/red5/server/messaging/OOBControlMessage.java index 1194b380171f70c3e4302f66ef7d8ee5db13b6b7..1278ccd62509cbd61b038eee88f2b1fc62c47643 100644 --- a/common/src/main/java/org/red5/server/messaging/OOBControlMessage.java +++ b/common/src/main/java/org/red5/server/messaging/OOBControlMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/messaging/PipeConnectionEvent.java b/common/src/main/java/org/red5/server/messaging/PipeConnectionEvent.java index a6ce7a23dfd19740a6ac5f8b607202879db98c6d..ac792ffe6b61b2ffda88cd442b0617613e5b87fa 100644 --- a/common/src/main/java/org/red5/server/messaging/PipeConnectionEvent.java +++ b/common/src/main/java/org/red5/server/messaging/PipeConnectionEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/IConnectionManager.java b/common/src/main/java/org/red5/server/net/IConnectionManager.java index 9994aa5683d5d5d6c933eb8ce2ab0c06a244d2ae..4ed06bc35bae6e4fb4ef64b90122da6df80b2369 100644 --- a/common/src/main/java/org/red5/server/net/IConnectionManager.java +++ b/common/src/main/java/org/red5/server/net/IConnectionManager.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/IHandshake.java b/common/src/main/java/org/red5/server/net/IHandshake.java index c3335766c2a94143aabf0de2e21c5c3dba721498..10151ae5da93c564a3e276130143f2d93674b1cb 100644 --- a/common/src/main/java/org/red5/server/net/IHandshake.java +++ b/common/src/main/java/org/red5/server/net/IHandshake.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/protocol/HandshakeFailedException.java b/common/src/main/java/org/red5/server/net/protocol/HandshakeFailedException.java index 1a7fe068c53822e00c81b49ef34f993df2786ea4..a2c413b89caa85c36761fc32f3efaa49c5949cf1 100644 --- a/common/src/main/java/org/red5/server/net/protocol/HandshakeFailedException.java +++ b/common/src/main/java/org/red5/server/net/protocol/HandshakeFailedException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/protocol/ProtocolException.java b/common/src/main/java/org/red5/server/net/protocol/ProtocolException.java index a6d8558b90647403c1506b6eafa57c44b58b5c1d..e4c3b477dc66574be475863fea4df564157ec442 100644 --- a/common/src/main/java/org/red5/server/net/protocol/ProtocolException.java +++ b/common/src/main/java/org/red5/server/net/protocol/ProtocolException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/protocol/RTMPDecodeState.java b/common/src/main/java/org/red5/server/net/protocol/RTMPDecodeState.java index 1f206ffa1d84d60b1551d1038e028bd09aff319d..0e06ac7e0a0971cc6929413cc65a966be023f15a 100644 --- a/common/src/main/java/org/red5/server/net/protocol/RTMPDecodeState.java +++ b/common/src/main/java/org/red5/server/net/protocol/RTMPDecodeState.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/remoting/IRemotingCallback.java b/common/src/main/java/org/red5/server/net/remoting/IRemotingCallback.java index 5a2f859a2e2c8548c97155429605c2f5b8fa5443..70d1997aaedf54b941fbd928ae12c73a1bd96329 100644 --- a/common/src/main/java/org/red5/server/net/remoting/IRemotingCallback.java +++ b/common/src/main/java/org/red5/server/net/remoting/IRemotingCallback.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/remoting/RemotingClient.java b/common/src/main/java/org/red5/server/net/remoting/RemotingClient.java index b52aff66e40c9bb77183bfd36d4dca3e16c1d012..ad6ab1686443ced16216103d182921b2553eb994 100644 --- a/common/src/main/java/org/red5/server/net/remoting/RemotingClient.java +++ b/common/src/main/java/org/red5/server/net/remoting/RemotingClient.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/remoting/RemotingHeader.java b/common/src/main/java/org/red5/server/net/remoting/RemotingHeader.java index 55c3e25dde69ce0852292013d2fc06159469e8f4..f1e41e6a252d4444c205dbe4296e91508c749ccf 100644 --- a/common/src/main/java/org/red5/server/net/remoting/RemotingHeader.java +++ b/common/src/main/java/org/red5/server/net/remoting/RemotingHeader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/BaseRTMPHandler.java b/common/src/main/java/org/red5/server/net/rtmp/BaseRTMPHandler.java index cd24320a9045cb9ac56e4bb51b9310a7c14ae3d3..dfeea93444ec9d3893b45d01e8fd8f0a33376cbb 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/BaseRTMPHandler.java +++ b/common/src/main/java/org/red5/server/net/rtmp/BaseRTMPHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/Channel.java b/common/src/main/java/org/red5/server/net/rtmp/Channel.java index b4c822dbbbc9bb2b7253176e77d7a6bddba34478..83e0c53d76b3ca2af2c885e3f18c8c439f6173e1 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/Channel.java +++ b/common/src/main/java/org/red5/server/net/rtmp/Channel.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/DeferredResult.java b/common/src/main/java/org/red5/server/net/rtmp/DeferredResult.java index 147bab5d8ab213c0f15791b788e547b10bd320d9..dfd238c3c55d9e91fa7ed6761036c9a3cbb06027 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/DeferredResult.java +++ b/common/src/main/java/org/red5/server/net/rtmp/DeferredResult.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/IRTMPHandler.java b/common/src/main/java/org/red5/server/net/rtmp/IRTMPHandler.java index df5943bc7fed2fe10feb3f674c35ba5237286ae4..21f165a021fd010ba389c39db21e93861ca1a490 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/IRTMPHandler.java +++ b/common/src/main/java/org/red5/server/net/rtmp/IRTMPHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/IReceivedMessageTaskQueueListener.java b/common/src/main/java/org/red5/server/net/rtmp/IReceivedMessageTaskQueueListener.java index a2533de16d08acb23b1908288e061d7ee2911540..340149d035130992431c5b3f3ad8dbd9e8e76555 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/IReceivedMessageTaskQueueListener.java +++ b/common/src/main/java/org/red5/server/net/rtmp/IReceivedMessageTaskQueueListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/RTMPConnection.java b/common/src/main/java/org/red5/server/net/rtmp/RTMPConnection.java index 2bc713ac3c84ec80e6224d5ec6f514ac517f9865..9104f888fafa54d5e4f4cae8431d97fd656d4e4c 100755 --- a/common/src/main/java/org/red5/server/net/rtmp/RTMPConnection.java +++ b/common/src/main/java/org/red5/server/net/rtmp/RTMPConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/RTMPHandler.java b/common/src/main/java/org/red5/server/net/rtmp/RTMPHandler.java index df6c967eb12b4b74cb7c4e5684b7ad9150325d72..cc3540d32da128aea45e83bb93cfc54649525050 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/RTMPHandler.java +++ b/common/src/main/java/org/red5/server/net/rtmp/RTMPHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/RTMPHandshake.java b/common/src/main/java/org/red5/server/net/rtmp/RTMPHandshake.java index 45013b844045aa87c7133252428e5ae309eed4fd..e432fe96bc0377e1f0aaf1c7cdd9d56b22f222f0 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/RTMPHandshake.java +++ b/common/src/main/java/org/red5/server/net/rtmp/RTMPHandshake.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/RTMPMinaConnection.java b/common/src/main/java/org/red5/server/net/rtmp/RTMPMinaConnection.java index e2b837ca913e5b1f6e01d5a0fd563869bae34ef5..ca492004d2b9319711cf8f6f0084740aa1d7199a 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/RTMPMinaConnection.java +++ b/common/src/main/java/org/red5/server/net/rtmp/RTMPMinaConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/RTMPType.java b/common/src/main/java/org/red5/server/net/rtmp/RTMPType.java index 731fd403d610e9aeb6d521acf30c2a8a337bec82..910747de365bcefbb15d692dcaa7cc18edb677c4 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/RTMPType.java +++ b/common/src/main/java/org/red5/server/net/rtmp/RTMPType.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/RTMPUtils.java b/common/src/main/java/org/red5/server/net/rtmp/RTMPUtils.java index 006101b8eeb986300573031cf86e090d445bc610..c7cd8a13b124962aed43049de2a22c4e31b85434 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/RTMPUtils.java +++ b/common/src/main/java/org/red5/server/net/rtmp/RTMPUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTask.java b/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTask.java index 385fbd87fb8682febbfb4f708a938953eb917f6e..7c9f5429e3b834940af39ebb1ac86f599bbedcf8 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTask.java +++ b/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTask.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTaskQueue.java b/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTaskQueue.java index 129d2951bf284d8e1caa7fdc839168e9929943e7..f959186ac8d9cdef5dfcc9a57a48ec0541cda051 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTaskQueue.java +++ b/common/src/main/java/org/red5/server/net/rtmp/ReceivedMessageTaskQueue.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/IEventDecoder.java b/common/src/main/java/org/red5/server/net/rtmp/codec/IEventDecoder.java index 1cf455676ab12b4d9d21a8db6108c0233e5e78c6..bf4d298f11f45a26c0caf24400b29337b07daebd 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/IEventDecoder.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/IEventDecoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/IEventEncoder.java b/common/src/main/java/org/red5/server/net/rtmp/codec/IEventEncoder.java index a6fd70ea089ee275f89a3907546028af89d1dd11..fc3f17883db5496cb91c321fa43c2fe3525be413 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/IEventEncoder.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/IEventEncoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMP.java b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMP.java index 4d6f5e0bb36a756189d766b1f1997e8485d88234..9cfcdb2cfa0b46ccf6a5b8d12db6ae0298774ed3 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMP.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMP.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPCodecFactory.java b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPCodecFactory.java index e12db734483e68143d84268546d155edfaf52a93..c6e02dce8623fbfc1c22c159cdb8757816f9552e 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPCodecFactory.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPCodecFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolDecoder.java b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolDecoder.java index 989b4d4c1ee43f2db25dd6c8f42949e1980e7649..5be39939912c7b3b173e1b24507f0c309c595a70 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolDecoder.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolEncoder.java b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolEncoder.java index 2cbe82ba1c81ba05b95bd456f1c3101b373807bc..a97fd87da35a99da9365792a2c057de8fa614933 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolEncoder.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaProtocolEncoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolDecoder.java b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolDecoder.java index b80544f1a745a1dfab144e7f80da75c1427a9ef6..da4bfc8c24b4f41478a1a47a808990db95f04df9 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolDecoder.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolEncoder.java b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolEncoder.java index e5f6d84fb5f3e81c18c0876097a7d6d850834370..3783eede7b3525db4195cd4ad1872a645a36c403 100755 --- a/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolEncoder.java +++ b/common/src/main/java/org/red5/server/net/rtmp/codec/RTMPProtocolEncoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/Abort.java b/common/src/main/java/org/red5/server/net/rtmp/event/Abort.java index 593bbc8c8a77f75daa6139c25ac0d9f8cb06b518..93a57ae656f1899f2f6bc27d3988d6cfb4ae4588 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/Abort.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/Abort.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/Aggregate.java b/common/src/main/java/org/red5/server/net/rtmp/event/Aggregate.java index 3bc41c01b8a31c352f2d33792823ba13a09ff0ed..e314eb0658ba4029cfd00666eacc021d4e20ad06 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/Aggregate.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/Aggregate.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/AllocationDebugger.java b/common/src/main/java/org/red5/server/net/rtmp/event/AllocationDebugger.java index 1ff9fb02d65a7c7ec5c41334a3559d2cafac8ead..79685517f8c2e21c381cb6614fdaf51610c809f3 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/AllocationDebugger.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/AllocationDebugger.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/AudioData.java b/common/src/main/java/org/red5/server/net/rtmp/event/AudioData.java index 97fd92a0b4a4fbe36ce58c1c82414a6da284950e..4f0e363846fd66e5dcec311f3ed67d67537d0e6a 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/AudioData.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/AudioData.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/BaseEvent.java b/common/src/main/java/org/red5/server/net/rtmp/event/BaseEvent.java index 664132f3b2f0329102ce854e249d829f0567c058..3efbd24538e39e8cfbd6139002993055a3e4c21d 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/BaseEvent.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/BaseEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/BytesRead.java b/common/src/main/java/org/red5/server/net/rtmp/event/BytesRead.java index 0b7d7370a1fa0968568c39d9f8ed8092d56198a7..b1c4ced9da1129d628dad38f3d67fc3e8cfa4dda 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/BytesRead.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/BytesRead.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/CachedEvent.java b/common/src/main/java/org/red5/server/net/rtmp/event/CachedEvent.java index 42f17ad2cf208e172d46e49f0c6833196210f9fd..41001986a9986f638aca9a9510f69fd6bf80259a 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/CachedEvent.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/CachedEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/ChunkSize.java b/common/src/main/java/org/red5/server/net/rtmp/event/ChunkSize.java index 005f2cd9c3ea38dd0dede3989ee81ef806d47c14..eca774cbf824b1d2d3feb15de30479f9cad88a01 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/ChunkSize.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/ChunkSize.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/ClientBW.java b/common/src/main/java/org/red5/server/net/rtmp/event/ClientBW.java index d073a8f4ecee7a1919d45295fb5b588e5ef1e2fc..9a5f43a5bf900229f12ea3f5c4cf83fcffdf0872 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/ClientBW.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/ClientBW.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/FlexMessage.java b/common/src/main/java/org/red5/server/net/rtmp/event/FlexMessage.java index 68e83fd293e269f845a1cee3ca12424c02298ebf..ae1c2d96841572d6e12c9380776aba4247ad7ec7 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/FlexMessage.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/FlexMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/FlexStreamSend.java b/common/src/main/java/org/red5/server/net/rtmp/event/FlexStreamSend.java index 60ba8031cb2592d3c7bb9f0da180a9df82bfc8eb..9b4f27e79db094009b6e1f927b70bb1a8b581724 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/FlexStreamSend.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/FlexStreamSend.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/IRTMPEvent.java b/common/src/main/java/org/red5/server/net/rtmp/event/IRTMPEvent.java index 114ea1a6b9f49dfca1fd8c2c70b789df863f2ad7..ac3fb8449ff6ebbdbfb02d3c63ecf7db2b7661a6 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/IRTMPEvent.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/IRTMPEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/Invoke.java b/common/src/main/java/org/red5/server/net/rtmp/event/Invoke.java index 4e4e70b25d22375840b7656c5e887ebeaf8bc55c..90e79d811363cc9e787966bbd85601cc8870884c 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/Invoke.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/Invoke.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/Notify.java b/common/src/main/java/org/red5/server/net/rtmp/event/Notify.java index ffbabcac3c947145b7afdecc648ba904b64c42c1..2dcef455d4443a0ce9e35a1b15f3423286e14d44 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/Notify.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/Notify.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/Ping.java b/common/src/main/java/org/red5/server/net/rtmp/event/Ping.java index 258ee6021978da34f850ce038a0ada934d83c7a4..ed266f5f7b38fa61dcf4d2a2635669b86dec89cb 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/Ping.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/Ping.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/SerializeUtils.java b/common/src/main/java/org/red5/server/net/rtmp/event/SerializeUtils.java index 0ad340b0510b36fd461fbb2f6caff00efd5051c3..cdd6ca82b2c77590c0301bfd34b76f0c8fae66e7 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/SerializeUtils.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/SerializeUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/ServerBW.java b/common/src/main/java/org/red5/server/net/rtmp/event/ServerBW.java index c88a881491ea79a03d490cce585af794d5504206..a9c38cbcff108e1f9b2d5f2928497a1a03b3b88f 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/ServerBW.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/ServerBW.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/Unknown.java b/common/src/main/java/org/red5/server/net/rtmp/event/Unknown.java index ae7a5c1a66e8687be2fbc6972f85a99ed2c93cac..396f73a38b599c1d2c64b46a7021af18dfec1d62 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/Unknown.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/Unknown.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/event/VideoData.java b/common/src/main/java/org/red5/server/net/rtmp/event/VideoData.java index c20129a9840a7f6e26ed71baab0bc9be07be8289..e323eecfa272b06bdf9f8389422d064bcd39a5c1 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/event/VideoData.java +++ b/common/src/main/java/org/red5/server/net/rtmp/event/VideoData.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/message/ChunkHeader.java b/common/src/main/java/org/red5/server/net/rtmp/message/ChunkHeader.java index e9539ed9f2ca6b1b7d71819a1f958e201b955512..b36f6cbf1d74f1f15b87efec886ab41db933abfe 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/message/ChunkHeader.java +++ b/common/src/main/java/org/red5/server/net/rtmp/message/ChunkHeader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/message/Constants.java b/common/src/main/java/org/red5/server/net/rtmp/message/Constants.java index 9f7357911bed3773ccb7c0b8ccfff0b7bb5a9cae..b9949f33911a7226762d67d96d84ca107f6c2921 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/message/Constants.java +++ b/common/src/main/java/org/red5/server/net/rtmp/message/Constants.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/message/Header.java b/common/src/main/java/org/red5/server/net/rtmp/message/Header.java index e93c27f2e771dd06c11f234fbc359c3fca230183..f1cb97237e57ff1a1d979db394d962207518c8a5 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/message/Header.java +++ b/common/src/main/java/org/red5/server/net/rtmp/message/Header.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/message/Packet.java b/common/src/main/java/org/red5/server/net/rtmp/message/Packet.java index e1941363101fa356d6e940723769133c746e9e16..0b4030c7d2f11ff2db23cb18d446f783027963b2 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/message/Packet.java +++ b/common/src/main/java/org/red5/server/net/rtmp/message/Packet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/message/SharedObjectTypeMapping.java b/common/src/main/java/org/red5/server/net/rtmp/message/SharedObjectTypeMapping.java index 3f22c00800cc9fed92740b83d274f8ca2133b93a..b455e0c94314ea4d359f9c375e7b2de01d22b2dd 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/message/SharedObjectTypeMapping.java +++ b/common/src/main/java/org/red5/server/net/rtmp/message/SharedObjectTypeMapping.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/status/RuntimeStatusObject.java b/common/src/main/java/org/red5/server/net/rtmp/status/RuntimeStatusObject.java index cc3b229e61cb00fc60b72eda914ed9a8d3b06bfd..d8e64130ab1506423d9863993264280512a389bf 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/status/RuntimeStatusObject.java +++ b/common/src/main/java/org/red5/server/net/rtmp/status/RuntimeStatusObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/status/Status.java b/common/src/main/java/org/red5/server/net/rtmp/status/Status.java index 0efcacd6b680f3e353246d57e9573e860deb1f4a..575290f0e8a49046319f55811a46b363ecc3c017 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/status/Status.java +++ b/common/src/main/java/org/red5/server/net/rtmp/status/Status.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/status/StatusCodes.java b/common/src/main/java/org/red5/server/net/rtmp/status/StatusCodes.java index 2ca7b0fa56b65124c6589cd1255ffee6554247a4..7e0ba39c30f5bf064a7afcfe144966677f693f50 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/status/StatusCodes.java +++ b/common/src/main/java/org/red5/server/net/rtmp/status/StatusCodes.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/status/StatusObject.java b/common/src/main/java/org/red5/server/net/rtmp/status/StatusObject.java index 7eef01df90f4dbafaa525554ddfc24507aa4cd1b..bab8755c54dda13f3313f64d88530a6132ed232b 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/status/StatusObject.java +++ b/common/src/main/java/org/red5/server/net/rtmp/status/StatusObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmp/status/StatusObjectService.java b/common/src/main/java/org/red5/server/net/rtmp/status/StatusObjectService.java index 3c81cf2de93a0b40dabf9412156a342873592057..a75e0af22f8b791604a984b7e8e043968d3aaf24 100644 --- a/common/src/main/java/org/red5/server/net/rtmp/status/StatusObjectService.java +++ b/common/src/main/java/org/red5/server/net/rtmp/status/StatusObjectService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java b/common/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java index 8925cdf7c9e90e976b1ec8c51bb838f7dede70b0..0a82e9ad32ebab7dc57c26e99da2e94ecf280225 100644 --- a/common/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java +++ b/common/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTCodecFactory.java b/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTCodecFactory.java index 5bb525bc459173d80c21c58680587ca0297b3d5f..e3a20882ba96bc5cfc756636c49936a41dfdd281 100644 --- a/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTCodecFactory.java +++ b/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTCodecFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolDecoder.java b/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolDecoder.java index c121087bb81871bdc7700d4c03137d6b7d06b246..fc3c7ec3fb70626c01292318274b79253f77dd34 100644 --- a/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolDecoder.java +++ b/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolEncoder.java b/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolEncoder.java index 236cfab99639320cb6eb1635374830cd9a599388..fec3fc881e8e818458b12cd7389ebc4f0ac31520 100644 --- a/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolEncoder.java +++ b/common/src/main/java/org/red5/server/net/rtmpt/codec/RTMPTProtocolEncoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/net/servlet/ServletUtils.java b/common/src/main/java/org/red5/server/net/servlet/ServletUtils.java index c9aa3e921b994af348173556ad81a8c27114fcee..c594c766ee0bd0b7518a5484a9024069c83f3a7f 100644 --- a/common/src/main/java/org/red5/server/net/servlet/ServletUtils.java +++ b/common/src/main/java/org/red5/server/net/servlet/ServletUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/persistence/RamPersistence.java b/common/src/main/java/org/red5/server/persistence/RamPersistence.java index 1777921e623de74739ed7fa2cc4c5355087f33d4..e40d02f804a22ec5d779847e4a383359de55442f 100644 --- a/common/src/main/java/org/red5/server/persistence/RamPersistence.java +++ b/common/src/main/java/org/red5/server/persistence/RamPersistence.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/scheduling/JDKSchedulingService.java b/common/src/main/java/org/red5/server/scheduling/JDKSchedulingService.java index dd8b929d971cc091edcad33be99cc7ea3f961d27..c2a08b9166eba8d57aaca6a3fbbd91f3856d1d0a 100644 --- a/common/src/main/java/org/red5/server/scheduling/JDKSchedulingService.java +++ b/common/src/main/java/org/red5/server/scheduling/JDKSchedulingService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/scheduling/JDKSchedulingServiceJob.java b/common/src/main/java/org/red5/server/scheduling/JDKSchedulingServiceJob.java index 63fc54de367eaf9e4f37a68f427bf95286952af7..012205a405a80d6472ae5511e238661a2cffdcdc 100644 --- a/common/src/main/java/org/red5/server/scheduling/JDKSchedulingServiceJob.java +++ b/common/src/main/java/org/red5/server/scheduling/JDKSchedulingServiceJob.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/scope/BasicScope.java b/common/src/main/java/org/red5/server/scope/BasicScope.java index ecf74b5fb4700aa6ecd5c2f26c99f2919e5362d0..c62a0ce1bf2a358ed12fcd25052a72df432ca997 100644 --- a/common/src/main/java/org/red5/server/scope/BasicScope.java +++ b/common/src/main/java/org/red5/server/scope/BasicScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/scope/Scope.java b/common/src/main/java/org/red5/server/scope/Scope.java index b52c4f767d4317793045ae5e7fe1613b924ad1c1..f60b7a8da19ea9a4f85bbbddd75144bdfedec2d6 100644 --- a/common/src/main/java/org/red5/server/scope/Scope.java +++ b/common/src/main/java/org/red5/server/scope/Scope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/scope/ScopeSecurityHandler.java b/common/src/main/java/org/red5/server/scope/ScopeSecurityHandler.java index f41accc20e8741cb10ac6f8f548d72624e1841f6..9dd716f5bf58875893e8ed0aef0b9d8413f058d2 100644 --- a/common/src/main/java/org/red5/server/scope/ScopeSecurityHandler.java +++ b/common/src/main/java/org/red5/server/scope/ScopeSecurityHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/service/Call.java b/common/src/main/java/org/red5/server/service/Call.java index 4073cd38f609c70dcd29bd2fec57c3439db4d653..234ea9f21bea7257d74c3f7895279dc112efb7ba 100644 --- a/common/src/main/java/org/red5/server/service/Call.java +++ b/common/src/main/java/org/red5/server/service/Call.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/service/IServiceResolver.java b/common/src/main/java/org/red5/server/service/IServiceResolver.java index 5133e57a67a46b43cdbab58b0a8e56a295d60f38..029e81991e9f66852099d6df73e2aa9d6a641acd 100644 --- a/common/src/main/java/org/red5/server/service/IServiceResolver.java +++ b/common/src/main/java/org/red5/server/service/IServiceResolver.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/service/MethodNotFoundException.java b/common/src/main/java/org/red5/server/service/MethodNotFoundException.java index e57c7c6f016cae5c4be20fd872ea381b3afb7959..7909d300e59a6bea087fb672e0e1bf9439e6c8bf 100644 --- a/common/src/main/java/org/red5/server/service/MethodNotFoundException.java +++ b/common/src/main/java/org/red5/server/service/MethodNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/service/NotAllowedException.java b/common/src/main/java/org/red5/server/service/NotAllowedException.java index 819198017cbb1260b00a19b5cdfc79dfb817d06e..fccb1e3c584a7aa29b7564c340a809c7623877c7 100644 --- a/common/src/main/java/org/red5/server/service/NotAllowedException.java +++ b/common/src/main/java/org/red5/server/service/NotAllowedException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/service/PendingCall.java b/common/src/main/java/org/red5/server/service/PendingCall.java index 05d7c4189587320c1537e8dc7b76f8c6a705320c..d0bb5fd63c954c0d508f7fd9a534329976ce78b4 100644 --- a/common/src/main/java/org/red5/server/service/PendingCall.java +++ b/common/src/main/java/org/red5/server/service/PendingCall.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/service/ReflectionUtils.java b/common/src/main/java/org/red5/server/service/ReflectionUtils.java index c765906a7724422758888676ce33278bf40b0130..66d15c0c04617c724d5fe06eaabecfd1e1d1b71b 100644 --- a/common/src/main/java/org/red5/server/service/ReflectionUtils.java +++ b/common/src/main/java/org/red5/server/service/ReflectionUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. @@ -9,10 +9,12 @@ package org.red5.server.service; import java.lang.reflect.Method; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import org.red5.io.utils.ConversionUtils; import org.red5.server.api.IConnection; +import org.red5.server.api.service.IServiceCall; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -23,8 +25,63 @@ public class ReflectionUtils { private static final Logger log = LoggerFactory.getLogger(ReflectionUtils.class); + private static final boolean isDebug = log.isDebugEnabled(), isTrace = log.isTraceEnabled(); + //used to prevent extra object creation when a method with a set of params is not found - private static final Object[] nullReturn = new Object[] { null, null }; + private static final Object[] NULL_RETURN = new Object[] { null, null }; + + /** + * Returns (method, params) for the given service or method name if found on a service or scope handler. + * + * @param conn current connection + * @param call service call interested in the method + * @param service service to search for the method, if given + * @param methodName method name to find + * @return Method/params pairs or null if not found + */ + public static Object[] findMethod(IConnection conn, IServiceCall call, Object service, String methodName) { + if (isDebug) { + log.debug("Find method: {} in service: {} for call: {} and connection: {}", methodName, service, call, conn); + } + // build an array with the incoming args and the current connection as the first element + Object[] args = call.getArguments(); + Object[] argsWithConnection; + if (args != null) { + argsWithConnection = new Object[args.length + 1]; + argsWithConnection[0] = conn; + for (int i = 0; i < args.length; i++) { + if (isDebug) { + log.debug("{} => {}", i, args[i]); + if (isTrace && args[i] != null) { + log.trace("Arg type: {}", args[i].getClass().getName()); + } + } + argsWithConnection[i + 1] = args[i]; + } + } else { + argsWithConnection = new Object[] { conn }; + } + // First, search for method without the connection as first "forced" parameter + Object[] methodResult = ReflectionUtils.findMethodWithExactParameters(service, methodName, args); + if (methodResult[0] == null) { + // Second, search for method with the connection as first parameter + methodResult = ReflectionUtils.findMethodWithExactParameters(service, methodName, argsWithConnection); + if (methodResult[0] == null) { + // Third, search for method without the connection as first parameter in a list argument + methodResult = ReflectionUtils.findMethodWithListParameters(service, methodName, args); + if (methodResult[0] == null) { + // Fourth, search for method with the connection as first parameter in a list argument + methodResult = ReflectionUtils.findMethodWithListParameters(service, methodName, argsWithConnection); + if (methodResult[0] == null) { + log.warn("Method {} not found in {} with parameters {}", methodName, service, Arrays.asList(args)); + call.setStatus(Call.STATUS_METHOD_NOT_FOUND); + call.setException(new MethodNotFoundException(methodName, args)); + } + } + } + } + return methodResult; + } /** * Returns (method, params) for the given service or (null, null) if no method was found. @@ -59,62 +116,51 @@ public class ReflectionUtils { */ public static Object[] findMethodWithExactParameters(Object service, String methodName, Object[] args) { int numParams = (args == null) ? 0 : args.length; - log.trace("Args / parameters count: {}", numParams); - Method method = null; + if (isTrace) { + log.trace("Args / parameters count: {}", numParams); + } // convert the args first Object[] params = ConversionUtils.convertParams(args); - if (log.isDebugEnabled()) { + if (isDebug) { for (Object clazz : params) { log.debug("Parameter: {}", clazz); } } // try to skip the listing of all the methods by checking for exactly what we want first try { - method = service.getClass().getMethod(methodName, (Class<?>[]) params); - log.debug("Exact method found, skipping list: {}", methodName); + Method method = service.getClass().getMethod(methodName, (Class<?>[]) params); + if (isDebug) { + log.debug("Exact method found, skipping list: {}", methodName); + } return new Object[] { method, args }; } catch (NoSuchMethodException nsme) { - log.debug("Method not found using exact parameter types"); + log.debug("Method not found using exact parameter types", nsme); } List<Method> methods = ConversionUtils.findMethodsByNameAndNumParams(service, methodName, numParams); - log.debug("Found {} methods", methods.size()); - if (methods.isEmpty()) { - return new Object[] { null, null }; - } else if (methods.size() == 1 && args == null) { - return new Object[] { methods.get(0), null }; - } else if (methods.size() > 1) { - log.debug("Multiple methods found with same name and parameter count; parameter conversion will be attempted in order."); + if (isTrace) { + log.trace("Found {} methods", methods.size()); } - // search for method with exact parameters - for (int i = 0; i < methods.size(); i++) { - method = methods.get(i); - boolean valid = true; - Class<?>[] paramTypes = method.getParameterTypes(); - for (int j = 0; j < args.length; j++) { - if ((args[j] == null && paramTypes[j].isPrimitive()) || (args[j] != null && !args[j].getClass().equals(paramTypes[j]))) { - valid = false; - break; + if (!methods.isEmpty()) { + for (Method m : methods) { + boolean valid = true; + log.debug("Method: {}", m); + if (args != null) { + // check args against method parameter types + Class<?>[] paramTypes = m.getParameterTypes(); + // search for method with exact parameters + for (int j = 0; j < args.length; j++) { + if ((args[j] == null && paramTypes[j].isPrimitive()) || (args[j] != null && !args[j].getClass().equals(paramTypes[j]))) { + valid = false; + break; + } + } } - } - if (valid) { - return new Object[] { method, args }; - } - } - // try to convert parameters - for (int i = 0; i < methods.size(); i++) { - try { - method = methods.get(i); - params = ConversionUtils.convertParams(args, method.getParameterTypes()); - if (args.length > 0 && (args[0] instanceof IConnection) && (!(params[0] instanceof IConnection))) { - // don't convert first IConnection parameter - continue; + if (valid) { + return new Object[] { m, args }; } - return new Object[] { method, params }; - } catch (Exception ex) { - log.debug("Parameter conversion failed for {}", method); } } - return new Object[] { null, null }; + return NULL_RETURN; } /** @@ -156,37 +202,37 @@ public class ReflectionUtils { log.debug("Exact method found (skipping list): {}", methodName); return new Object[] { method, args }; } catch (NoSuchMethodException nsme) { - log.debug("Method not found using exact parameter types"); + log.debug("Method not found using exact parameter types", nsme); } List<Method> methods = ConversionUtils.findMethodsByNameAndNumParams(service, methodName, 1); - log.debug("Found {} methods", methods.size()); - if (methods.isEmpty()) { - return new Object[] { null, null }; - } else if (methods.size() > 1) { - log.debug("Multiple methods found with same name and parameter count; parameter conversion will be attempted in order."); + if (isTrace) { + log.trace("Found {} methods", methods.size()); } - ArrayList<Object> argsList = new ArrayList<Object>(); - if (args != null) { - for (Object element : args) { - argsList.add(element); + if (!methods.isEmpty()) { + log.debug("Multiple methods found with same name and parameter count; parameter conversion will be attempted in order"); + ArrayList<Object> argsList = new ArrayList<Object>(); + if (args != null) { + for (Object element : args) { + argsList.add(element); + } } - } - args = new Object[] { argsList }; - Object[] params = null; - for (int i = 0; i < methods.size(); i++) { - try { - method = methods.get(i); - params = ConversionUtils.convertParams(args, method.getParameterTypes()); - if (argsList.size() > 0 && (argsList.get(0) instanceof IConnection) && (!(params[0] instanceof IConnection))) { - // Don't convert first IConnection parameter - continue; + args = new Object[] { argsList }; + Object[] params = null; + for (int i = 0; i < methods.size(); i++) { + try { + method = methods.get(i); + params = ConversionUtils.convertParams(args, method.getParameterTypes()); + if (argsList.size() > 0 && (argsList.get(0) instanceof IConnection) && (!(params[0] instanceof IConnection))) { + // Don't convert first IConnection parameter + continue; + } + return new Object[] { method, params }; + } catch (Exception ex) { + log.debug("Parameter conversion failed", ex); } - return new Object[] { method, params }; - } catch (Exception ex) { - log.debug("Parameter conversion failed", ex); } } - return nullReturn; + return NULL_RETURN; } } diff --git a/common/src/main/java/org/red5/server/service/ServiceInvoker.java b/common/src/main/java/org/red5/server/service/ServiceInvoker.java index df14ac4a8c37a2520185024396fd8aeae3f7dead..35ef74f1ced55b2d691c7444285e8b6efccdb789 100644 --- a/common/src/main/java/org/red5/server/service/ServiceInvoker.java +++ b/common/src/main/java/org/red5/server/service/ServiceInvoker.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. @@ -9,8 +9,6 @@ package org.red5.server.service; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; -import java.util.Arrays; -import java.util.Collections; import java.util.HashSet; import java.util.Set; @@ -97,7 +95,7 @@ public class ServiceInvoker implements IServiceInvoker { log.warn("Service not found: {}", serviceName); return false; } else { - log.trace("Service found: {}", serviceName); + log.debug("Service found: {}", serviceName); } // Invoke if everything is ok return invoke(call, service); @@ -105,110 +103,73 @@ public class ServiceInvoker implements IServiceInvoker { /** {@inheritDoc} */ public boolean invoke(IServiceCall call, Object service) { + boolean invoked = false; IConnection conn = Red5.getConnectionLocal(); String methodName = call.getServiceMethodName(); - log.debug("Service: {} name: {} method: {}", new Object[] { service, call.getServiceName(), methodName }); + log.debug("Service: {} name: {} method: {}", service, call.getServiceName(), methodName); // pull off the prefixes since java doesnt allow this on a method name if (methodName.charAt(0) == '@') { log.debug("Method name contained an illegal prefix, it will be removed: {}", methodName); methodName = methodName.substring(1); } - // build an array with the incoming args and the current connection as the first element - Object[] args = call.getArguments(); - Object[] argsWithConnection; - if (args != null) { - argsWithConnection = new Object[args.length + 1]; - argsWithConnection[0] = conn; - for (int i = 0; i < args.length; i++) { - log.debug("{} => {}", i, args[i]); - if (args[i] != null) { - log.trace("Arg type: {}", args[i].getClass().getName()); - } - argsWithConnection[i + 1] = args[i]; - } + // look up the method with provided matching arguments + Object[] methodResult = ReflectionUtils.findMethod(conn, call, service, methodName); + // get the method + Method method = (methodResult != null ? (Method) methodResult[0] : null); + if (method == null || call.getException() != null) { + log.warn("Method not found: {}", methodName); } else { - argsWithConnection = new Object[] { conn }; - } - // find the method - Object[] methodResult = null; - // First, search for method with the connection as first parameter. - methodResult = ReflectionUtils.findMethodWithExactParameters(service, methodName, argsWithConnection); - if (methodResult.length == 0 || methodResult[0] == null) { - // Second, search for method without the connection as first parameter. - methodResult = ReflectionUtils.findMethodWithExactParameters(service, methodName, args); - if (methodResult.length == 0 || methodResult[0] == null) { - // Third, search for method with the connection as first parameter in a list argument. - methodResult = ReflectionUtils.findMethodWithListParameters(service, methodName, argsWithConnection); - if (methodResult.length == 0 || methodResult[0] == null) { - // Fourth, search for method without the connection as first parameter in a list argument. - methodResult = ReflectionUtils.findMethodWithListParameters(service, methodName, args); - if (methodResult.length == 0 || methodResult[0] == null) { - log.error("Method {} with parameters {} not found in {}", new Object[] { methodName, (args == null ? Collections.EMPTY_LIST : Arrays.asList(args)), service }); - call.setStatus(Call.STATUS_METHOD_NOT_FOUND); - if (args != null && args.length > 0) { - call.setException(new MethodNotFoundException(methodName, args)); - } else { - call.setException(new MethodNotFoundException(methodName)); - } - return false; - } + log.debug("Method found: {}", methodName); + // get the parameters; the value at index 1 can be null, but the methodResult array will never be null + Object[] params = (Object[]) methodResult[1]; + try { + if (method.isAnnotationPresent(DeclarePrivate.class)) { + // Method may not be called by clients. + log.debug("Method {} is declared private.", method); + throw new NotAllowedException("Access denied, method is private"); } - } - } - Object result = null; - Method method = (Method) methodResult[0]; - Object[] params = (Object[]) methodResult[1]; - try { - if (method.isAnnotationPresent(DeclarePrivate.class)) { - // Method may not be called by clients. - log.debug("Method {} is declared private.", method); - throw new NotAllowedException("Access denied, method is private"); - } - final DeclareProtected annotation = method.getAnnotation(DeclareProtected.class); - if (annotation != null) { - if (!conn.getClient().hasPermission(conn, annotation.permission())) { + final DeclareProtected annotation = method.getAnnotation(DeclareProtected.class); + if (annotation != null && !conn.getClient().hasPermission(conn, annotation.permission())) { // client doesn't have required permission log.debug("Client {} doesn't have required permission {} to call {}", new Object[] { conn.getClient(), annotation.permission(), method }); throw new NotAllowedException("Access denied, method is protected"); } + Object result = null; + log.debug("Invoking method: {}", method.toString()); + if (method.getReturnType().equals(Void.TYPE)) { + log.debug("result: void"); + method.invoke(service, params); + call.setStatus(Call.STATUS_SUCCESS_VOID); + } else { + result = method.invoke(service, params); + log.debug("result: {}", result); + call.setStatus(result == null ? Call.STATUS_SUCCESS_NULL : Call.STATUS_SUCCESS_RESULT); + } + if (call instanceof IPendingServiceCall) { + ((IPendingServiceCall) call).setResult(result); + } + invoked = true; + } catch (NotAllowedException e) { + call.setException(e); + call.setStatus(Call.STATUS_ACCESS_DENIED); + } catch (IllegalAccessException accessEx) { + call.setException(accessEx); + call.setStatus(Call.STATUS_ACCESS_DENIED); + log.error("Error executing call: {}", call, accessEx); + } catch (InvocationTargetException invocationEx) { + call.setException(invocationEx); + call.setStatus(Call.STATUS_INVOCATION_EXCEPTION); + if (!(invocationEx.getCause() instanceof ClientDetailsException)) { + // only log if not handled by client + log.error("Error executing call: {}", call, invocationEx); + } + } catch (Exception ex) { + call.setException(ex); + call.setStatus(Call.STATUS_GENERAL_EXCEPTION); + log.error("Error executing call: {}", call, ex); } - log.debug("Invoking method: {}", method.toString()); - if (method.getReturnType().equals(Void.TYPE)) { - log.debug("result: void"); - method.invoke(service, params); - call.setStatus(Call.STATUS_SUCCESS_VOID); - } else { - result = method.invoke(service, params); - log.debug("result: {}", result); - call.setStatus(result == null ? Call.STATUS_SUCCESS_NULL : Call.STATUS_SUCCESS_RESULT); - } - if (call instanceof IPendingServiceCall) { - ((IPendingServiceCall) call).setResult(result); - } - } catch (NotAllowedException e) { - call.setException(e); - call.setStatus(Call.STATUS_ACCESS_DENIED); - return false; - } catch (IllegalAccessException accessEx) { - call.setException(accessEx); - call.setStatus(Call.STATUS_ACCESS_DENIED); - log.error("Error executing call: {}", call, accessEx); - return false; - } catch (InvocationTargetException invocationEx) { - call.setException(invocationEx); - call.setStatus(Call.STATUS_INVOCATION_EXCEPTION); - if (!(invocationEx.getCause() instanceof ClientDetailsException)) { - // only log if not handled by client - log.error("Error executing call: {}", call, invocationEx); - } - return false; - } catch (Exception ex) { - call.setException(ex); - call.setStatus(Call.STATUS_GENERAL_EXCEPTION); - log.error("Error executing call: {}", call, ex); - return false; } - return true; + return invoked; } } diff --git a/common/src/main/java/org/red5/server/service/ServiceNotFoundException.java b/common/src/main/java/org/red5/server/service/ServiceNotFoundException.java index b49f1436f7cbb3e71aa35fe539e554a8cf50d321..ad76952475887adf8a4b9f2e132b3d9facee35e2 100644 --- a/common/src/main/java/org/red5/server/service/ServiceNotFoundException.java +++ b/common/src/main/java/org/red5/server/service/ServiceNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/ClientSharedObject.java b/common/src/main/java/org/red5/server/so/ClientSharedObject.java index 0f79e287eb9bd3dfe3416714de4fe0aedd7563a8..5a3cb66bed6645bdf9fd7d5978334718a0ee244c 100644 --- a/common/src/main/java/org/red5/server/so/ClientSharedObject.java +++ b/common/src/main/java/org/red5/server/so/ClientSharedObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/FlexSharedObjectMessage.java b/common/src/main/java/org/red5/server/so/FlexSharedObjectMessage.java index f7614319487a312ea5f480139a80d6caaefcf771..63ac16b60e3dc8afb9f527509bb3ed1510540b4e 100644 --- a/common/src/main/java/org/red5/server/so/FlexSharedObjectMessage.java +++ b/common/src/main/java/org/red5/server/so/FlexSharedObjectMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/ISharedObjectEvent.java b/common/src/main/java/org/red5/server/so/ISharedObjectEvent.java index ac2b64981294713cb912ee8b00859e75f526d79c..764348fb76d970bc59a15c96be2b6958c72250a7 100644 --- a/common/src/main/java/org/red5/server/so/ISharedObjectEvent.java +++ b/common/src/main/java/org/red5/server/so/ISharedObjectEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/ISharedObjectMessage.java b/common/src/main/java/org/red5/server/so/ISharedObjectMessage.java index dc1b8815b6f66b448cc57b716b27de414a32923e..c1369a345d79493a7e9a4c5ae5ab78de54e8fd3b 100644 --- a/common/src/main/java/org/red5/server/so/ISharedObjectMessage.java +++ b/common/src/main/java/org/red5/server/so/ISharedObjectMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/SharedObject.java b/common/src/main/java/org/red5/server/so/SharedObject.java index a98a52380e4e1aa4891a68caf4357e98a33d5227..d247f209107f5bdfbe38659a180373a8cbeb9af7 100644 --- a/common/src/main/java/org/red5/server/so/SharedObject.java +++ b/common/src/main/java/org/red5/server/so/SharedObject.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/SharedObjectEvent.java b/common/src/main/java/org/red5/server/so/SharedObjectEvent.java index 97ba8e16baa770450dddc2a0b9819e88d340ee7c..5e87b92b815e9dd10b0e400b7bf9ad5623b1ac17 100644 --- a/common/src/main/java/org/red5/server/so/SharedObjectEvent.java +++ b/common/src/main/java/org/red5/server/so/SharedObjectEvent.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/SharedObjectMessage.java b/common/src/main/java/org/red5/server/so/SharedObjectMessage.java index 54797a8acf3f603dcf076fe86e69b9706a5d29cb..581970b1c7da2bcbfecde759b478e798643e8837 100644 --- a/common/src/main/java/org/red5/server/so/SharedObjectMessage.java +++ b/common/src/main/java/org/red5/server/so/SharedObjectMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/SharedObjectScope.java b/common/src/main/java/org/red5/server/so/SharedObjectScope.java index 78e572c4f3af63ae987a9930cdcfd027701ee2c4..6697479f37426ac5d62c6f6d6fcb732804076ae8 100644 --- a/common/src/main/java/org/red5/server/so/SharedObjectScope.java +++ b/common/src/main/java/org/red5/server/so/SharedObjectScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/so/SharedObjectService.java b/common/src/main/java/org/red5/server/so/SharedObjectService.java index 118335bb99e2051acd62fb44b8303ee7a85104de..5ffb62b6812baf1473dea9da0fa789fe39b49b66 100644 --- a/common/src/main/java/org/red5/server/so/SharedObjectService.java +++ b/common/src/main/java/org/red5/server/so/SharedObjectService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/AbstractClientStream.java b/common/src/main/java/org/red5/server/stream/AbstractClientStream.java index 00e5f0a71c488bb89a1851fdacd3e58d68d16b39..08f2c6b130c78aa77e879a0e601d9998723c1170 100644 --- a/common/src/main/java/org/red5/server/stream/AbstractClientStream.java +++ b/common/src/main/java/org/red5/server/stream/AbstractClientStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/AbstractStream.java b/common/src/main/java/org/red5/server/stream/AbstractStream.java index 60ea6964e511ea9c474d04896b47de087cfe0bd3..b50fdae5d14696e3641e4e571342dff30b3d164e 100644 --- a/common/src/main/java/org/red5/server/stream/AbstractStream.java +++ b/common/src/main/java/org/red5/server/stream/AbstractStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/AudioCodecFactory.java b/common/src/main/java/org/red5/server/stream/AudioCodecFactory.java index f9547bed8e952924fd743f6b217ad6eef5b55174..253529619a91ff72bdb2625476fc6b3a4cd7c4a8 100644 --- a/common/src/main/java/org/red5/server/stream/AudioCodecFactory.java +++ b/common/src/main/java/org/red5/server/stream/AudioCodecFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/ClientBroadcastStream.java b/common/src/main/java/org/red5/server/stream/ClientBroadcastStream.java index 928b71279e2f6af61e417bacf7a90d98710c2770..a080f81017e16b96059d2378434d2b4509afcca9 100644 --- a/common/src/main/java/org/red5/server/stream/ClientBroadcastStream.java +++ b/common/src/main/java/org/red5/server/stream/ClientBroadcastStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/DefaultStreamFilenameGenerator.java b/common/src/main/java/org/red5/server/stream/DefaultStreamFilenameGenerator.java index 6f44490aafa88acc462b1e1b672d34505570ada4..cabb51a9ded36b73327ba7877ebb0127725eaba1 100644 --- a/common/src/main/java/org/red5/server/stream/DefaultStreamFilenameGenerator.java +++ b/common/src/main/java/org/red5/server/stream/DefaultStreamFilenameGenerator.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/IConsumerService.java b/common/src/main/java/org/red5/server/stream/IConsumerService.java index 27a1cad6bbcd8395778a2b3e350a40b159090f89..1c9245f76e202f1c2bcad7e0c46fa9cb9464f402 100644 --- a/common/src/main/java/org/red5/server/stream/IConsumerService.java +++ b/common/src/main/java/org/red5/server/stream/IConsumerService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/IFrameDropper.java b/common/src/main/java/org/red5/server/stream/IFrameDropper.java index ecfbe10a36c4eef4ca0cc8b8b3fca23598fc62a1..a187076cca7c169bb3a2d28adf27425f22addabc 100644 --- a/common/src/main/java/org/red5/server/stream/IFrameDropper.java +++ b/common/src/main/java/org/red5/server/stream/IFrameDropper.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/IProviderService.java b/common/src/main/java/org/red5/server/stream/IProviderService.java index cf30b807c8c32318d6d61754bb6f0a7f66ed620f..f043802c5a2eed8fba0c31f920dda0ee77cd20a4 100644 --- a/common/src/main/java/org/red5/server/stream/IProviderService.java +++ b/common/src/main/java/org/red5/server/stream/IProviderService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/ISeekableProvider.java b/common/src/main/java/org/red5/server/stream/ISeekableProvider.java index 7eb8f5a29d5afbf20a7079fb2767b28846acb1ef..e70c8c91fcde476f75a0df01731347a65463a351 100644 --- a/common/src/main/java/org/red5/server/stream/ISeekableProvider.java +++ b/common/src/main/java/org/red5/server/stream/ISeekableProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/IStreamData.java b/common/src/main/java/org/red5/server/stream/IStreamData.java index 2e1c17b259d5954870d972f24e4a871b33e78f6a..b104bf19c5fb356afa5c588b23fa68861ec7492e 100644 --- a/common/src/main/java/org/red5/server/stream/IStreamData.java +++ b/common/src/main/java/org/red5/server/stream/IStreamData.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/IStreamTypeAwareProvider.java b/common/src/main/java/org/red5/server/stream/IStreamTypeAwareProvider.java index 293aedc580c4244060871916f244f71d1c538b84..bf5f0576e4b1333fa9827be4f526e8c08c80369d 100644 --- a/common/src/main/java/org/red5/server/stream/IStreamTypeAwareProvider.java +++ b/common/src/main/java/org/red5/server/stream/IStreamTypeAwareProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/OutputStream.java b/common/src/main/java/org/red5/server/stream/OutputStream.java index 4f5443390046c2e7ff8d374b39d430041b807bda..3558958508e05f25e39e9000a62fdcb9ab914768 100644 --- a/common/src/main/java/org/red5/server/stream/OutputStream.java +++ b/common/src/main/java/org/red5/server/stream/OutputStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/PlayEngine.java b/common/src/main/java/org/red5/server/stream/PlayEngine.java index c0f609d23e53c672068282b95b6e3e3c0c7e7015..7cb6a9b94eb502bf2f495d0fe904f1a7859d7a27 100755 --- a/common/src/main/java/org/red5/server/stream/PlayEngine.java +++ b/common/src/main/java/org/red5/server/stream/PlayEngine.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/PlaylistSubscriberStream.java b/common/src/main/java/org/red5/server/stream/PlaylistSubscriberStream.java index db8b8079cca5d9ce7ba27c9558f8d67961a4a218..b11a87137285cda2ad601e99abd4676b9ccef194 100644 --- a/common/src/main/java/org/red5/server/stream/PlaylistSubscriberStream.java +++ b/common/src/main/java/org/red5/server/stream/PlaylistSubscriberStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/RecordingListener.java b/common/src/main/java/org/red5/server/stream/RecordingListener.java index bc06b12f38eb7e8a18f0edaf1e8e4273b413b382..828483ed8657d4764f7ff460b5a66ee8aea2dd6b 100644 --- a/common/src/main/java/org/red5/server/stream/RecordingListener.java +++ b/common/src/main/java/org/red5/server/stream/RecordingListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/SimplePlaylistController.java b/common/src/main/java/org/red5/server/stream/SimplePlaylistController.java index 71304913a4d59cc863ebe7444ab98bb1da3a82fb..90b1e93692e24b3cc6f782c966debb28759cd3a5 100644 --- a/common/src/main/java/org/red5/server/stream/SimplePlaylistController.java +++ b/common/src/main/java/org/red5/server/stream/SimplePlaylistController.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/SingleItemSubscriberStream.java b/common/src/main/java/org/red5/server/stream/SingleItemSubscriberStream.java index aac9da808e5d51dc312f551324a07cc7e3dc1c38..6f9221688f5a39a7bd3faaab9ce221baca422bfc 100644 --- a/common/src/main/java/org/red5/server/stream/SingleItemSubscriberStream.java +++ b/common/src/main/java/org/red5/server/stream/SingleItemSubscriberStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/StreamNotFoundException.java b/common/src/main/java/org/red5/server/stream/StreamNotFoundException.java index 1ee4f31ff4d92c640455b97d34d06569224d5561..c0e233dc5c517a88b4a90bf04ff7e1f840cfe8c9 100644 --- a/common/src/main/java/org/red5/server/stream/StreamNotFoundException.java +++ b/common/src/main/java/org/red5/server/stream/StreamNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/StreamService.java b/common/src/main/java/org/red5/server/stream/StreamService.java index c5b3325c156f31b0c26164b90e13297ccc610516..610635dee2d24a3bf1ebe768310c4dd2eff7c5bf 100644 --- a/common/src/main/java/org/red5/server/stream/StreamService.java +++ b/common/src/main/java/org/red5/server/stream/StreamService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/StreamableFileFactory.java b/common/src/main/java/org/red5/server/stream/StreamableFileFactory.java index a5d7492929df1b17b80e7191401805d91c20f144..a14780894637a32e84e7b771eace195c2857035f 100644 --- a/common/src/main/java/org/red5/server/stream/StreamableFileFactory.java +++ b/common/src/main/java/org/red5/server/stream/StreamableFileFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/VideoCodecFactory.java b/common/src/main/java/org/red5/server/stream/VideoCodecFactory.java index 588a2ea719f271dcd83f7dfd8460a983b69f6505..1bacfef464c984e8717f3bcb39dd83ced0b4fa34 100644 --- a/common/src/main/java/org/red5/server/stream/VideoCodecFactory.java +++ b/common/src/main/java/org/red5/server/stream/VideoCodecFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/VideoFrameDropper.java b/common/src/main/java/org/red5/server/stream/VideoFrameDropper.java index 5487d83e83982cfea548a57993f55b4dd8135b50..738d91c90644eb03de7935421975ea2006e8bedf 100644 --- a/common/src/main/java/org/red5/server/stream/VideoFrameDropper.java +++ b/common/src/main/java/org/red5/server/stream/VideoFrameDropper.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/bandwidth/ClientServerDetection.java b/common/src/main/java/org/red5/server/stream/bandwidth/ClientServerDetection.java index c08323f2cb81656d84b5d6fe2b314143d812302c..db6e0f45397b38f32970144a804ec27261612a12 100644 --- a/common/src/main/java/org/red5/server/stream/bandwidth/ClientServerDetection.java +++ b/common/src/main/java/org/red5/server/stream/bandwidth/ClientServerDetection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/bandwidth/IBandwidthDetection.java b/common/src/main/java/org/red5/server/stream/bandwidth/IBandwidthDetection.java index b953b9a1ad62c3ad7433aa046dbc9515268d836a..ad5726dac1066b78b4700f0227941e26fe169a4c 100644 --- a/common/src/main/java/org/red5/server/stream/bandwidth/IBandwidthDetection.java +++ b/common/src/main/java/org/red5/server/stream/bandwidth/IBandwidthDetection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/bandwidth/ServerClientDetection.java b/common/src/main/java/org/red5/server/stream/bandwidth/ServerClientDetection.java index cd2e75523c6cd5bcd67f7520428f95ecc216b094..39f2797571a365102e00286d65e93e96c0533bb9 100644 --- a/common/src/main/java/org/red5/server/stream/bandwidth/ServerClientDetection.java +++ b/common/src/main/java/org/red5/server/stream/bandwidth/ServerClientDetection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/consumer/ConnectionConsumer.java b/common/src/main/java/org/red5/server/stream/consumer/ConnectionConsumer.java index 2161c8293ac26d6edd925086ea8b92c602b9dcfa..2b9969e685153ce007c5bb2a4edc777177009446 100644 --- a/common/src/main/java/org/red5/server/stream/consumer/ConnectionConsumer.java +++ b/common/src/main/java/org/red5/server/stream/consumer/ConnectionConsumer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/consumer/SlicedFileConsumer.java b/common/src/main/java/org/red5/server/stream/consumer/SlicedFileConsumer.java index 52d22e814c8adfc59ec81e859a8710092aec1ed7..e5aae9779b956bca32b9be244b8d27a0328768a7 100644 --- a/common/src/main/java/org/red5/server/stream/consumer/SlicedFileConsumer.java +++ b/common/src/main/java/org/red5/server/stream/consumer/SlicedFileConsumer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/message/RTMPMessage.java b/common/src/main/java/org/red5/server/stream/message/RTMPMessage.java index fe5559a39bdc3c286ae058caa4be34ab2142e1c7..6c5c4afbd50e92a19bd6caeb37440a67cd5e6464 100644 --- a/common/src/main/java/org/red5/server/stream/message/RTMPMessage.java +++ b/common/src/main/java/org/red5/server/stream/message/RTMPMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/message/ResetMessage.java b/common/src/main/java/org/red5/server/stream/message/ResetMessage.java index 5f8e1450395c609d4a2dcf6921a587b0ca00bb14..5e2bd4faa2997566289e85a924ba78398e16f0a5 100644 --- a/common/src/main/java/org/red5/server/stream/message/ResetMessage.java +++ b/common/src/main/java/org/red5/server/stream/message/ResetMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/stream/message/StatusMessage.java b/common/src/main/java/org/red5/server/stream/message/StatusMessage.java index 883f2325c0734a7d3ad2e3ca7e2a94af0af9ae4f..5f86fd4441e42f5504addc41b3bfdb1c33106328 100644 --- a/common/src/main/java/org/red5/server/stream/message/StatusMessage.java +++ b/common/src/main/java/org/red5/server/stream/message/StatusMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/util/FileUtil.java b/common/src/main/java/org/red5/server/util/FileUtil.java index d0b351a8ba98fd8c97e684040f89eba4af11dccb..62cc6821d6922c177dad3e6493aa598aa90e4dca 100644 --- a/common/src/main/java/org/red5/server/util/FileUtil.java +++ b/common/src/main/java/org/red5/server/util/FileUtil.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/util/HttpConnectionUtil.java b/common/src/main/java/org/red5/server/util/HttpConnectionUtil.java index 5b3b7e83ddc139ae21116ab09a47790cbd6e2770..6620da2f84c00b8cafa1086b2f4da7605f37f2c8 100644 --- a/common/src/main/java/org/red5/server/util/HttpConnectionUtil.java +++ b/common/src/main/java/org/red5/server/util/HttpConnectionUtil.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/util/PropertyConverter.java b/common/src/main/java/org/red5/server/util/PropertyConverter.java index f58789806f8b2f6de6b17fe1ea80bcf70e1bc07e..e077ddf3ec0c5041b0348935e2d55c4e03b68b16 100644 --- a/common/src/main/java/org/red5/server/util/PropertyConverter.java +++ b/common/src/main/java/org/red5/server/util/PropertyConverter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/common/src/main/java/org/red5/server/util/ScopeUtils.java b/common/src/main/java/org/red5/server/util/ScopeUtils.java index 55bfe12151cc07fe82010fc1173de879620a6af8..4413537b2d814e4156d11c755ae3371eef1680f2 100644 --- a/common/src/main/java/org/red5/server/util/ScopeUtils.java +++ b/common/src/main/java/org/red5/server/util/ScopeUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/pom.xml b/io/pom.xml index 95de65445cdf9aff675aeca392046d9d878d8554..1d7df3754a0a75d3f44cee861867302eb9cd557b 100644 --- a/io/pom.xml +++ b/io/pom.xml @@ -1,9 +1,9 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.red5</groupId> <artifactId>red5-parent</artifactId> - <version>1.3.24</version> + <version>1.3.25</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>red5-io</artifactId> diff --git a/io/src/main/java/org/red5/annotations/Anonymous.java b/io/src/main/java/org/red5/annotations/Anonymous.java index 732bac800346de2d4f84bcc66952d75f09f16531..a1a055b51811b0bd52910406e3cc232c1446ab18 100644 --- a/io/src/main/java/org/red5/annotations/Anonymous.java +++ b/io/src/main/java/org/red5/annotations/Anonymous.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/annotations/DeclarePrivate.java b/io/src/main/java/org/red5/annotations/DeclarePrivate.java index 80175e5bfbba7ccd94219b17b281ae29bceb2cf5..00691b382905ede514f2cba4b0fb31fc6f469181 100644 --- a/io/src/main/java/org/red5/annotations/DeclarePrivate.java +++ b/io/src/main/java/org/red5/annotations/DeclarePrivate.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/annotations/DeclareProtected.java b/io/src/main/java/org/red5/annotations/DeclareProtected.java index a41dbaf101cec42acdc867f114c7805dd0845c2b..cdf122d34db4b9c9c76cb0e72c5f2c59d44ef9e8 100644 --- a/io/src/main/java/org/red5/annotations/DeclareProtected.java +++ b/io/src/main/java/org/red5/annotations/DeclareProtected.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/annotations/DontSerialize.java b/io/src/main/java/org/red5/annotations/DontSerialize.java index 21127b56305fe93754daaa1ba99c84eb00dab7bd..4d8e8ba96834b958e7da8bf6c3c2e052bd58f420 100644 --- a/io/src/main/java/org/red5/annotations/DontSerialize.java +++ b/io/src/main/java/org/red5/annotations/DontSerialize.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/annotations/RemoteClass.java b/io/src/main/java/org/red5/annotations/RemoteClass.java index e012ea1cb7beeea841c5d9f7c90eb8aa3ca1cb41..5bddcb4c42bf9ff6652a5b9d4a6d88f0a68339a3 100644 --- a/io/src/main/java/org/red5/annotations/RemoteClass.java +++ b/io/src/main/java/org/red5/annotations/RemoteClass.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/cache/ICacheStore.java b/io/src/main/java/org/red5/cache/ICacheStore.java index 92df9dd953c47e62e9081d0756a1acf5e1bf2a59..3769d0fc8c7e8ddc697d1edf4e881a830ebfc38c 100644 --- a/io/src/main/java/org/red5/cache/ICacheStore.java +++ b/io/src/main/java/org/red5/cache/ICacheStore.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/cache/ICacheable.java b/io/src/main/java/org/red5/cache/ICacheable.java index 8e560681ea3ca0a6e3398bd56c9ad8ac9e1a6d6a..d7aa8da27ae8f05f0ac18d5c6681e27a03fd7ee0 100644 --- a/io/src/main/java/org/red5/cache/ICacheable.java +++ b/io/src/main/java/org/red5/cache/ICacheable.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/cache/impl/CacheImpl.java b/io/src/main/java/org/red5/cache/impl/CacheImpl.java index 420fac859290a8f96c9fb6f4462a5fa717d2b022..e06b50a69588fb58af3cd95dc62c68563f6c1e9e 100644 --- a/io/src/main/java/org/red5/cache/impl/CacheImpl.java +++ b/io/src/main/java/org/red5/cache/impl/CacheImpl.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/cache/impl/CacheableImpl.java b/io/src/main/java/org/red5/cache/impl/CacheableImpl.java index c4c059adee0d8c7a5d395191aef585f58b030b63..aa018744394abe98363827df9d5634428bb9dab4 100644 --- a/io/src/main/java/org/red5/cache/impl/CacheableImpl.java +++ b/io/src/main/java/org/red5/cache/impl/CacheableImpl.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/cache/impl/EhCacheImpl.java b/io/src/main/java/org/red5/cache/impl/EhCacheImpl.java index ad6d142cc960027f706528ec7febaa10a7ff8e5f..cb1cf46c94e0c7659c7e59f2d1cd4dead9d80ffa 100644 --- a/io/src/main/java/org/red5/cache/impl/EhCacheImpl.java +++ b/io/src/main/java/org/red5/cache/impl/EhCacheImpl.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/cache/impl/NoCacheImpl.java b/io/src/main/java/org/red5/cache/impl/NoCacheImpl.java index 5370b41c3ade53f0e404e82b04c0e2af7bdefc8b..210be14daf794425d6276eab15ebadb5dfbaa20a 100644 --- a/io/src/main/java/org/red5/cache/impl/NoCacheImpl.java +++ b/io/src/main/java/org/red5/cache/impl/NoCacheImpl.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/AACAudio.java b/io/src/main/java/org/red5/codec/AACAudio.java index 351cd0911fdf0ffdd64702af80a3ce1a86200ada..4f05729f6df3a4e26354c7244dde9926674ed00a 100644 --- a/io/src/main/java/org/red5/codec/AACAudio.java +++ b/io/src/main/java/org/red5/codec/AACAudio.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/AVCVideo.java b/io/src/main/java/org/red5/codec/AVCVideo.java index a0b288f94022812485e447956d700ee15c40a4af..9fa1bda0f46550b0e5b6438fbde1bf322f576283 100644 --- a/io/src/main/java/org/red5/codec/AVCVideo.java +++ b/io/src/main/java/org/red5/codec/AVCVideo.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/AudioCodec.java b/io/src/main/java/org/red5/codec/AudioCodec.java index 21f6024fbd2d7eaa89addc9ab032f336470f367e..74de6e38d7bd098017a223f32e35702ebc5ded1b 100644 --- a/io/src/main/java/org/red5/codec/AudioCodec.java +++ b/io/src/main/java/org/red5/codec/AudioCodec.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/HEVCVideo.java b/io/src/main/java/org/red5/codec/HEVCVideo.java index d3715217553769c4ea0b6ad7806abe2c6c0f646a..12ded0e6241a7e4b57ece6fc0086e815f6b76b10 100644 --- a/io/src/main/java/org/red5/codec/HEVCVideo.java +++ b/io/src/main/java/org/red5/codec/HEVCVideo.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/IAudioStreamCodec.java b/io/src/main/java/org/red5/codec/IAudioStreamCodec.java index 5f0c27d7374e4ece993fa56ef9c617aa1daf6d6d..03f76623b7753b5a096dcfba07d85766218fe49b 100644 --- a/io/src/main/java/org/red5/codec/IAudioStreamCodec.java +++ b/io/src/main/java/org/red5/codec/IAudioStreamCodec.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/IStreamCodecInfo.java b/io/src/main/java/org/red5/codec/IStreamCodecInfo.java index c30222846e78a11b51a17c115917998021192348..a38faf24ec9e7b21a37635c95aa016be7fc2143a 100644 --- a/io/src/main/java/org/red5/codec/IStreamCodecInfo.java +++ b/io/src/main/java/org/red5/codec/IStreamCodecInfo.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/IVideoStreamCodec.java b/io/src/main/java/org/red5/codec/IVideoStreamCodec.java index cc7160908fbe36ba53e3cec47f3d188cbcb2b7b7..a0eb9f396257c9e5d0b07f4bd35f92b318e093e8 100644 --- a/io/src/main/java/org/red5/codec/IVideoStreamCodec.java +++ b/io/src/main/java/org/red5/codec/IVideoStreamCodec.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/MP3Audio.java b/io/src/main/java/org/red5/codec/MP3Audio.java index 6912fffb681a8cbe20702a879ef7f9236a94118d..7704ffcd2dc68732b0fca28ca8c94bded1eeaa99 100644 --- a/io/src/main/java/org/red5/codec/MP3Audio.java +++ b/io/src/main/java/org/red5/codec/MP3Audio.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/OpusAudio.java b/io/src/main/java/org/red5/codec/OpusAudio.java index a93d2913b7aa9967f0315c65b52eec50d7744ec3..c6c8aea2ea9f63b0f7414e66c88bb69f26d860a4 100644 --- a/io/src/main/java/org/red5/codec/OpusAudio.java +++ b/io/src/main/java/org/red5/codec/OpusAudio.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/ScreenVideo.java b/io/src/main/java/org/red5/codec/ScreenVideo.java index 43c10afd001019871678f889e1bd710b95bc0ee3..56fe6f37d0265526e02339b39f7a4b53a1df8295 100644 --- a/io/src/main/java/org/red5/codec/ScreenVideo.java +++ b/io/src/main/java/org/red5/codec/ScreenVideo.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/ScreenVideo2.java b/io/src/main/java/org/red5/codec/ScreenVideo2.java index d13098d316168a87119e11bcf9b62d4578508243..8e98632d1486c3a120a689cfc770032de3032fa8 100644 --- a/io/src/main/java/org/red5/codec/ScreenVideo2.java +++ b/io/src/main/java/org/red5/codec/ScreenVideo2.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/SorensonVideo.java b/io/src/main/java/org/red5/codec/SorensonVideo.java index 260f87ad12f938abff5636a64fae040ccb52da50..6e7bff2f212e9109784bf7bb3ed4cebb1ed5d41a 100644 --- a/io/src/main/java/org/red5/codec/SorensonVideo.java +++ b/io/src/main/java/org/red5/codec/SorensonVideo.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/SpeexAudio.java b/io/src/main/java/org/red5/codec/SpeexAudio.java index 54f34d8beb28aba3b1662a1de9bbffa06dcf80fa..1bc77f040d4f144e714b3ffb6b5643f096a24d9c 100644 --- a/io/src/main/java/org/red5/codec/SpeexAudio.java +++ b/io/src/main/java/org/red5/codec/SpeexAudio.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/StreamCodecInfo.java b/io/src/main/java/org/red5/codec/StreamCodecInfo.java index 41af57f0032090bb89cb242e18d4dc0de53460ad..9a7b516ff7579269e6ba7752df3ce61d60fd5fc6 100644 --- a/io/src/main/java/org/red5/codec/StreamCodecInfo.java +++ b/io/src/main/java/org/red5/codec/StreamCodecInfo.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/ULAWAudio.java b/io/src/main/java/org/red5/codec/ULAWAudio.java index 9152f8dba67553a06d1d6a179586701269f15f3c..447d433493ce1c0f0b7c097c59866ce1308fa842 100644 --- a/io/src/main/java/org/red5/codec/ULAWAudio.java +++ b/io/src/main/java/org/red5/codec/ULAWAudio.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/VP8Video.java b/io/src/main/java/org/red5/codec/VP8Video.java index dcae8f92b155c496a658fc6e554b5422ab661e96..46b9765fe1ced74b9ac758129c564db691f8c35b 100644 --- a/io/src/main/java/org/red5/codec/VP8Video.java +++ b/io/src/main/java/org/red5/codec/VP8Video.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/codec/VideoCodec.java b/io/src/main/java/org/red5/codec/VideoCodec.java index bbfbcbacb4fee73f3064e41adbfbe40c7321b4fe..9249978b61816ff6967b75ce5058dd9ad0130c98 100644 --- a/io/src/main/java/org/red5/codec/VideoCodec.java +++ b/io/src/main/java/org/red5/codec/VideoCodec.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/data/messages/DataMessage.java b/io/src/main/java/org/red5/compatibility/flex/data/messages/DataMessage.java index 8cff12e83042dbc511d70350ee1043bea52484bf..effc67dd6f110c7086564937e2b85c3ad84ff813 100644 --- a/io/src/main/java/org/red5/compatibility/flex/data/messages/DataMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/data/messages/DataMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/data/messages/SequencedMessage.java b/io/src/main/java/org/red5/compatibility/flex/data/messages/SequencedMessage.java index 58f3ab3609042f0164f22a358cfb88acbbbfc30f..4871cae6871718da4ab15107168ec63918868be2 100644 --- a/io/src/main/java/org/red5/compatibility/flex/data/messages/SequencedMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/data/messages/SequencedMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/io/ArrayCollection.java b/io/src/main/java/org/red5/compatibility/flex/messaging/io/ArrayCollection.java index e6e53237e3590825a605c076d17d4826eb885163..1e82886f70093a593c56e7398e7436d1fc6346c5 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/io/ArrayCollection.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/io/ArrayCollection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/io/ObjectProxy.java b/io/src/main/java/org/red5/compatibility/flex/messaging/io/ObjectProxy.java index 847fcb3ffb440d9b119b0aceac8adce2c12b4cee..1fe52ef8eb2d6b2926536c2b0fb8b97b786f7c4a 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/io/ObjectProxy.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/io/ObjectProxy.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AbstractMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AbstractMessage.java index 81551499419e0e0e774d61375351bb739c8558c4..5d611d0762d3921514b8e4d3dd59c05633996596 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AbstractMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AbstractMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessage.java index 74654defb2738b6540c67e8856cf5322e3502e4a..df918621e89090fab033e60756ee7e38619e4954 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessageExt.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessageExt.java index 49a62f836a750d67b0ad0bfce147580013a5c8e1..93442326ebcbd44471fc7e27795a250e080747dc 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessageExt.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AcknowledgeMessageExt.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessage.java index 68bb187330e38101358dacaa214b7257d65f74f3..8d8c639bc9df67d740165cce7a31d7a752578f9f 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessageExt.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessageExt.java index aa3146a44eff06d8ce348bfc65e4ec4db4dae2c9..f2ff81e40395f569c2bf6216ef5a301d8b4be68d 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessageExt.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AsyncMessageExt.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AuthenticationMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AuthenticationMessage.java index 81e881fbb1d63a3ecb54e7a31e97a43459fc6856..5a5d73f0f0f1c7bd8ef2e5d1a3aeac98a77fc84c 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AuthenticationMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/AuthenticationMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessage.java index 492e68ab677c35b9369f3d928dbb67000857f17b..bda0456521c0840d31d99797ec5b02a0aa1d3ecb 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessageExt.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessageExt.java index 0cdeffce80764abe6317dc0679acc0068b9f32ee..670b1e453e878a46e572bfcb1e696f996d9945dd 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessageExt.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/CommandMessageExt.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Constants.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Constants.java index 931310e06364ddb4badeef996492ee9833ee65bb..0f3de9eb6bca70d0b66c1411bd27a059a3ee0893 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Constants.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Constants.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/ErrorMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/ErrorMessage.java index 3195ef2888da2f9131f9f3a9081f402bc2bc3549..08155ba05526a804faac3e1b5050156f1f65c395 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/ErrorMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/ErrorMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Message.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Message.java index beecb6468a2329a4279d7aaa1b0badb81c26a3a5..e61fcc59be12f5c7cdf4cfa60b3e9fe5393337c4 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Message.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/Message.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/RemotingMessage.java b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/RemotingMessage.java index d3392c49ba70daf2af653ff65d0e5944b7f0cd07..d86e7e12cf08ffd4eb820942e9e53c00b5a89a9a 100644 --- a/io/src/main/java/org/red5/compatibility/flex/messaging/messages/RemotingMessage.java +++ b/io/src/main/java/org/red5/compatibility/flex/messaging/messages/RemotingMessage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/BufferType.java b/io/src/main/java/org/red5/io/BufferType.java index b4bc4d095fe8e8fcbe8710c64937e2c421c5013a..d0bb4cbeaf34defb46199c4c72548b71a1a9d349 100644 --- a/io/src/main/java/org/red5/io/BufferType.java +++ b/io/src/main/java/org/red5/io/BufferType.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/CachingFileKeyFrameMetaCache.java b/io/src/main/java/org/red5/io/CachingFileKeyFrameMetaCache.java index 788323b36b537f6074bf4cc397886b46f99c2027..ca64f208dd77946a63c3c85da1814ec7694e30aa 100644 --- a/io/src/main/java/org/red5/io/CachingFileKeyFrameMetaCache.java +++ b/io/src/main/java/org/red5/io/CachingFileKeyFrameMetaCache.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/FileKeyFrameMetaCache.java b/io/src/main/java/org/red5/io/FileKeyFrameMetaCache.java index 061ff51ff1298277d67cd94c02ae91d66b7b8820..9ce784898eddb76c148872d699a8ccad4cc0f553 100644 --- a/io/src/main/java/org/red5/io/FileKeyFrameMetaCache.java +++ b/io/src/main/java/org/red5/io/FileKeyFrameMetaCache.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/IKeyFrameMetaCache.java b/io/src/main/java/org/red5/io/IKeyFrameMetaCache.java index 31e5b309eb94b070736a7e5e8be1f59543033973..c6900ca09e6655aadecead79a7eb74219ba8a5e7 100644 --- a/io/src/main/java/org/red5/io/IKeyFrameMetaCache.java +++ b/io/src/main/java/org/red5/io/IKeyFrameMetaCache.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/IStreamableFile.java b/io/src/main/java/org/red5/io/IStreamableFile.java index 3319d866713ef78db535487d62b4b42b9775cac4..1eb05c2dd83936e7ffd3b4272ce6ded1b1912740 100644 --- a/io/src/main/java/org/red5/io/IStreamableFile.java +++ b/io/src/main/java/org/red5/io/IStreamableFile.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/ITag.java b/io/src/main/java/org/red5/io/ITag.java index 0cc640eb44ed2fe349b505d32540d43d2d9d9d44..e6bee220f00b92b5afd62181ac76437ebcfc967f 100644 --- a/io/src/main/java/org/red5/io/ITag.java +++ b/io/src/main/java/org/red5/io/ITag.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/ITagReader.java b/io/src/main/java/org/red5/io/ITagReader.java index 1143b803d4a36e98ade8365c463a47912a210f21..b03b552d8086d3d4fb30a60f59302db86c0cc0fa 100644 --- a/io/src/main/java/org/red5/io/ITagReader.java +++ b/io/src/main/java/org/red5/io/ITagReader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/ITagWriter.java b/io/src/main/java/org/red5/io/ITagWriter.java index fa8075e0fe0fb5dedaa486a29f17fc5c6031e87c..8c36f413f9dee7326fdbdc22e87e55d5423a3248 100644 --- a/io/src/main/java/org/red5/io/ITagWriter.java +++ b/io/src/main/java/org/red5/io/ITagWriter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/IoConstants.java b/io/src/main/java/org/red5/io/IoConstants.java index d0fa6855c05a893d161fbb88447b4881e16371a5..719542377324cebff95799da1121eaa8e87335fc 100644 --- a/io/src/main/java/org/red5/io/IoConstants.java +++ b/io/src/main/java/org/red5/io/IoConstants.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf/AMF.java b/io/src/main/java/org/red5/io/amf/AMF.java index b8ed9306dab07d4b269efcb15cc3094eaee511b4..7aa38d533aa653349515880cf986f04690dec741 100644 --- a/io/src/main/java/org/red5/io/amf/AMF.java +++ b/io/src/main/java/org/red5/io/amf/AMF.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf/Input.java b/io/src/main/java/org/red5/io/amf/Input.java index de924cc54d300f3949c4dac15bdfd111dcd2ad8a..e0b9bbe963a5900d72a2dc4fbf377d4dc4221178 100644 --- a/io/src/main/java/org/red5/io/amf/Input.java +++ b/io/src/main/java/org/red5/io/amf/Input.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf/Output.java b/io/src/main/java/org/red5/io/amf/Output.java index d4480ebe2ae3564b38b20222049c7f8d8b257070..02844cee114238896dfb0c97b137806449c696a6 100644 --- a/io/src/main/java/org/red5/io/amf/Output.java +++ b/io/src/main/java/org/red5/io/amf/Output.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/AMF3.java b/io/src/main/java/org/red5/io/amf3/AMF3.java index deabb78846257eebee184114f92402011066ecc4..2edd2efdb369d3d3faaf8c534b93583c7a29e5df 100644 --- a/io/src/main/java/org/red5/io/amf3/AMF3.java +++ b/io/src/main/java/org/red5/io/amf3/AMF3.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/ByteArray.java b/io/src/main/java/org/red5/io/amf3/ByteArray.java index f371f038e0f42669f6a6af1ea863c86ddb59d98b..164547072aee237502cce94a0db28a59cb421880 100644 --- a/io/src/main/java/org/red5/io/amf3/ByteArray.java +++ b/io/src/main/java/org/red5/io/amf3/ByteArray.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/DataInput.java b/io/src/main/java/org/red5/io/amf3/DataInput.java index 86ecd19e6cdb6665549b4f78c6a0808deeef2dad..1a3eaa366642369c64920a2cf5ca6321f9fcceb4 100644 --- a/io/src/main/java/org/red5/io/amf3/DataInput.java +++ b/io/src/main/java/org/red5/io/amf3/DataInput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/DataOutput.java b/io/src/main/java/org/red5/io/amf3/DataOutput.java index 0ff5062fd5fc174bd1eb8f64e72876f7d7c2a9aa..1d8576c806acc8af49563faba5967155b2071903 100644 --- a/io/src/main/java/org/red5/io/amf3/DataOutput.java +++ b/io/src/main/java/org/red5/io/amf3/DataOutput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/IDataInput.java b/io/src/main/java/org/red5/io/amf3/IDataInput.java index 1213f5f8fa2827221d37423a482e6fb6ba49f104..d889ebedb5213f683ae28d9e6df4d36a8b78b766 100644 --- a/io/src/main/java/org/red5/io/amf3/IDataInput.java +++ b/io/src/main/java/org/red5/io/amf3/IDataInput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/IDataOutput.java b/io/src/main/java/org/red5/io/amf3/IDataOutput.java index ea7b0e691270add0df0809bd4f485bf72574770a..1a7f54302471e1666ff4edbb9bd7c2190a7a9cca 100644 --- a/io/src/main/java/org/red5/io/amf3/IDataOutput.java +++ b/io/src/main/java/org/red5/io/amf3/IDataOutput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/IExternalizable.java b/io/src/main/java/org/red5/io/amf3/IExternalizable.java index b162c0463ae1703faaa84d115e316493fc01f26e..b62b1b887f316af54e1704519fe9580e31f7b306 100644 --- a/io/src/main/java/org/red5/io/amf3/IExternalizable.java +++ b/io/src/main/java/org/red5/io/amf3/IExternalizable.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/Input.java b/io/src/main/java/org/red5/io/amf3/Input.java index baf670c12b3c3f09b845b987fe6164d2a4f84bbf..5db3e6b3d417290851848a7b0b627c3badfdbb77 100644 --- a/io/src/main/java/org/red5/io/amf3/Input.java +++ b/io/src/main/java/org/red5/io/amf3/Input.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/amf3/Output.java b/io/src/main/java/org/red5/io/amf3/Output.java index 268f55f2104f20ac9dbd3f12de0752f6362e5ce3..c9f8ae25c873a09823061891147c5eeebd431944 100644 --- a/io/src/main/java/org/red5/io/amf3/Output.java +++ b/io/src/main/java/org/red5/io/amf3/Output.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/FLVHeader.java b/io/src/main/java/org/red5/io/flv/FLVHeader.java index f58fc0a099a840a631e53213b907fe2be3a3fe31..9e38cf5ef1adbf904815e41b996daf013c702861 100644 --- a/io/src/main/java/org/red5/io/flv/FLVHeader.java +++ b/io/src/main/java/org/red5/io/flv/FLVHeader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/IFLV.java b/io/src/main/java/org/red5/io/flv/IFLV.java index d11cb3bb53443e117ba83b1656e13f7dc60f8937..621d70233453d24784da8424889a1fa7c31d9207 100644 --- a/io/src/main/java/org/red5/io/flv/IFLV.java +++ b/io/src/main/java/org/red5/io/flv/IFLV.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/IKeyFrameDataAnalyzer.java b/io/src/main/java/org/red5/io/flv/IKeyFrameDataAnalyzer.java index 82becf8b4960d08c32e7e986d9dc4309a0a1f276..485adc79a6021b3e485767f1a2426b9c5e33c481 100644 --- a/io/src/main/java/org/red5/io/flv/IKeyFrameDataAnalyzer.java +++ b/io/src/main/java/org/red5/io/flv/IKeyFrameDataAnalyzer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/impl/FLV.java b/io/src/main/java/org/red5/io/flv/impl/FLV.java index 93023f5bee0b4e4ef9d4744a5dbe744dbfdeb2da..d31c30a68793bc4bc1934455ae9f84d246d1b5e6 100644 --- a/io/src/main/java/org/red5/io/flv/impl/FLV.java +++ b/io/src/main/java/org/red5/io/flv/impl/FLV.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/impl/FLVReader.java b/io/src/main/java/org/red5/io/flv/impl/FLVReader.java index 029806be406141e9fce42903fee4030e7ecae1eb..25cb1d613391600f1766d641c82af9933c9bd698 100644 --- a/io/src/main/java/org/red5/io/flv/impl/FLVReader.java +++ b/io/src/main/java/org/red5/io/flv/impl/FLVReader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/impl/FLVWriter.java b/io/src/main/java/org/red5/io/flv/impl/FLVWriter.java index 3ba2ea9243f103f60b3ce44525495a016b67404b..9b55c6c8f625dc505c13540fad1675c23c0e7870 100644 --- a/io/src/main/java/org/red5/io/flv/impl/FLVWriter.java +++ b/io/src/main/java/org/red5/io/flv/impl/FLVWriter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/impl/Tag.java b/io/src/main/java/org/red5/io/flv/impl/Tag.java index 9e50b1a44384b1a64e143413180e095e17e226fd..8e616ded4e3f514d5ee938418346847b0bf542e6 100644 --- a/io/src/main/java/org/red5/io/flv/impl/Tag.java +++ b/io/src/main/java/org/red5/io/flv/impl/Tag.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/ICueType.java b/io/src/main/java/org/red5/io/flv/meta/ICueType.java index 0a9d39c99db4a570bf7bbf10847a0a471c59d829..b7201ba142dab48f8ee5fba5703c79ae62252516 100644 --- a/io/src/main/java/org/red5/io/flv/meta/ICueType.java +++ b/io/src/main/java/org/red5/io/flv/meta/ICueType.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/IMeta.java b/io/src/main/java/org/red5/io/flv/meta/IMeta.java index 1e8097ab00d1deef717c0b7f71beb7a7f97f38a0..9a6d7af1ef812c3b778ac0122f4d606624f55a75 100644 --- a/io/src/main/java/org/red5/io/flv/meta/IMeta.java +++ b/io/src/main/java/org/red5/io/flv/meta/IMeta.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/IMetaCue.java b/io/src/main/java/org/red5/io/flv/meta/IMetaCue.java index ddd525ef82d89bc643b02373ce23ee138dd31a82..584f6fb83900675e251678cf8aff4d68bed60747 100644 --- a/io/src/main/java/org/red5/io/flv/meta/IMetaCue.java +++ b/io/src/main/java/org/red5/io/flv/meta/IMetaCue.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/IMetaData.java b/io/src/main/java/org/red5/io/flv/meta/IMetaData.java index 0fa8d1054adc42c6bbe563c0c6235ef866774cc3..180d58e1eab7b8fb4b17471cb10b034367d16460 100644 --- a/io/src/main/java/org/red5/io/flv/meta/IMetaData.java +++ b/io/src/main/java/org/red5/io/flv/meta/IMetaData.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/IMetaService.java b/io/src/main/java/org/red5/io/flv/meta/IMetaService.java index 8ff035228c7e1cbcf106b4d530811fca8a6cdf44..6a8ad4259968b0573a8039c863f478d8648166c6 100644 --- a/io/src/main/java/org/red5/io/flv/meta/IMetaService.java +++ b/io/src/main/java/org/red5/io/flv/meta/IMetaService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/MetaCue.java b/io/src/main/java/org/red5/io/flv/meta/MetaCue.java index fd2d51364ce9505bcd3af358c35d084acf6c4049..38fa33adc62bc1bf982746c202fe0619a459fbe6 100644 --- a/io/src/main/java/org/red5/io/flv/meta/MetaCue.java +++ b/io/src/main/java/org/red5/io/flv/meta/MetaCue.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/MetaData.java b/io/src/main/java/org/red5/io/flv/meta/MetaData.java index b900f5b05a5945d427d67afe781414dd7e90ac94..3320faa961c2a9cafde407543f672fe2534133a6 100644 --- a/io/src/main/java/org/red5/io/flv/meta/MetaData.java +++ b/io/src/main/java/org/red5/io/flv/meta/MetaData.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/flv/meta/MetaService.java b/io/src/main/java/org/red5/io/flv/meta/MetaService.java index 2e2ced9d83f9161e343586d5ddb876425ca22a94..9b9b6a31d3e9dacf6509872b8c961a5ad41279aa 100644 --- a/io/src/main/java/org/red5/io/flv/meta/MetaService.java +++ b/io/src/main/java/org/red5/io/flv/meta/MetaService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/m4a/IM4A.java b/io/src/main/java/org/red5/io/m4a/IM4A.java index 32980aeb7390c76e6116727d11def4e833809e61..6cbd4ec907870aa800fae1db38eaabe70ae3df6e 100644 --- a/io/src/main/java/org/red5/io/m4a/IM4A.java +++ b/io/src/main/java/org/red5/io/m4a/IM4A.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/m4a/impl/M4A.java b/io/src/main/java/org/red5/io/m4a/impl/M4A.java index 9afa18b5b20a6d3d9db789c601829ea535993894..42bff4a6437ba7b0e1c05880493cc23c2eb9af23 100644 --- a/io/src/main/java/org/red5/io/m4a/impl/M4A.java +++ b/io/src/main/java/org/red5/io/m4a/impl/M4A.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/m4a/impl/M4AReader.java b/io/src/main/java/org/red5/io/m4a/impl/M4AReader.java index 88717e4e0a2ad1f4f20291ae265e23c0d0632ef1..cff5628ec30b696443ebdde750fa6e062d27e83f 100644 --- a/io/src/main/java/org/red5/io/m4a/impl/M4AReader.java +++ b/io/src/main/java/org/red5/io/m4a/impl/M4AReader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp3/IMP3.java b/io/src/main/java/org/red5/io/mp3/IMP3.java index eb31b2dd8043b3ce2a2cf98ecc44581b69dc599d..777413dc0e022255b09c95cb77e61adcbcd9e4ae 100644 --- a/io/src/main/java/org/red5/io/mp3/IMP3.java +++ b/io/src/main/java/org/red5/io/mp3/IMP3.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp3/impl/MP3.java b/io/src/main/java/org/red5/io/mp3/impl/MP3.java index 58f67107ff32c1f80f1fc81c9d608a45e9c57aea..f3228ac4a317737b71f62103ca44e7bca22d38fb 100644 --- a/io/src/main/java/org/red5/io/mp3/impl/MP3.java +++ b/io/src/main/java/org/red5/io/mp3/impl/MP3.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp3/impl/MP3Header.java b/io/src/main/java/org/red5/io/mp3/impl/MP3Header.java index f35f6f29375075bbbe8e13aa38d2ce7635b6c59a..f74f39d3ad9bbfc15b95eac03f9e2d229b7531e9 100644 --- a/io/src/main/java/org/red5/io/mp3/impl/MP3Header.java +++ b/io/src/main/java/org/red5/io/mp3/impl/MP3Header.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp3/impl/MP3Reader.java b/io/src/main/java/org/red5/io/mp3/impl/MP3Reader.java index 75b0d00bcbefe1bd9e152d14e1182bdb4ae38441..38460688b69e9682823079c5ee3c07345544b92b 100644 --- a/io/src/main/java/org/red5/io/mp3/impl/MP3Reader.java +++ b/io/src/main/java/org/red5/io/mp3/impl/MP3Reader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp3/impl/MP3Stream.java b/io/src/main/java/org/red5/io/mp3/impl/MP3Stream.java index c6e0afce68c73f44ef9e78b9cbc4729ac06f7c9f..ab87e35d3de46be841b50aae82448357e7790934 100644 --- a/io/src/main/java/org/red5/io/mp3/impl/MP3Stream.java +++ b/io/src/main/java/org/red5/io/mp3/impl/MP3Stream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp4/IMP4.java b/io/src/main/java/org/red5/io/mp4/IMP4.java index 9e7c1827c0aba4a797827b6085c6ffbda0b63f44..d9e284c9fceae542a3a4fd0122a5e5edda82520d 100644 --- a/io/src/main/java/org/red5/io/mp4/IMP4.java +++ b/io/src/main/java/org/red5/io/mp4/IMP4.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp4/MP4Frame.java b/io/src/main/java/org/red5/io/mp4/MP4Frame.java index 752ed63d975391d7e0342c47b84f55cd09402969..73b417e9682fad2c7e67f3cf4fafcdd403640998 100644 --- a/io/src/main/java/org/red5/io/mp4/MP4Frame.java +++ b/io/src/main/java/org/red5/io/mp4/MP4Frame.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp4/impl/MP4.java b/io/src/main/java/org/red5/io/mp4/impl/MP4.java index 6cfc7f9b978909902993900af0ccf9998392be3d..368812481751559e046b7074f1ac547ec1ecb825 100644 --- a/io/src/main/java/org/red5/io/mp4/impl/MP4.java +++ b/io/src/main/java/org/red5/io/mp4/impl/MP4.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/mp4/impl/MP4Reader.java b/io/src/main/java/org/red5/io/mp4/impl/MP4Reader.java index 5ff30f8beaade6b129a97ac525663a949086637e..a89922c2165b7efaa2826c5fdc3f03c393fb2a7d 100644 --- a/io/src/main/java/org/red5/io/mp4/impl/MP4Reader.java +++ b/io/src/main/java/org/red5/io/mp4/impl/MP4Reader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/BaseInput.java b/io/src/main/java/org/red5/io/object/BaseInput.java index 3422ceb18f53b2dffd5c3a7df916ad2cc6f37a31..65a23e3019732c7449cb5c38f89d91b1dca9d330 100644 --- a/io/src/main/java/org/red5/io/object/BaseInput.java +++ b/io/src/main/java/org/red5/io/object/BaseInput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/BaseOutput.java b/io/src/main/java/org/red5/io/object/BaseOutput.java index 3017b28068c894f7ec5ce1227acbdcaafec39d94..9b5c6ca93cb051f7fbc3ee857fd310edf8719f30 100644 --- a/io/src/main/java/org/red5/io/object/BaseOutput.java +++ b/io/src/main/java/org/red5/io/object/BaseOutput.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/DataTypes.java b/io/src/main/java/org/red5/io/object/DataTypes.java index c16e0a828b59fc6e54bc2c67fb6ddaf1727fd484..82c4978d4ccb983b8461cad7ec9541b24a905085 100644 --- a/io/src/main/java/org/red5/io/object/DataTypes.java +++ b/io/src/main/java/org/red5/io/object/DataTypes.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/Deserializer.java b/io/src/main/java/org/red5/io/object/Deserializer.java index f65b99f8246ac1d8d2e9ede6c837103c2189aa0d..1481a045358b163acf217ee6c8dfd8252114b2d0 100644 --- a/io/src/main/java/org/red5/io/object/Deserializer.java +++ b/io/src/main/java/org/red5/io/object/Deserializer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/Flag.java b/io/src/main/java/org/red5/io/object/Flag.java index bfa76006591fa445df1b29deb42893829c5795e3..6fa5f986f062f97e0341b98bed20826ca5141ac7 100644 --- a/io/src/main/java/org/red5/io/object/Flag.java +++ b/io/src/main/java/org/red5/io/object/Flag.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/ICustomSerializable.java b/io/src/main/java/org/red5/io/object/ICustomSerializable.java index 6c55d324b68fcf7695b14c76f0302756d8f4367e..312e401e208e82cb9899afb12973aca3745e162f 100644 --- a/io/src/main/java/org/red5/io/object/ICustomSerializable.java +++ b/io/src/main/java/org/red5/io/object/ICustomSerializable.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/Input.java b/io/src/main/java/org/red5/io/object/Input.java index e3a3b4f5ad616b8151331c2c534f183b88923721..cb90a5e305247d424d8a95df3015308cbe28b79a 100644 --- a/io/src/main/java/org/red5/io/object/Input.java +++ b/io/src/main/java/org/red5/io/object/Input.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/Output.java b/io/src/main/java/org/red5/io/object/Output.java index a1ea85febc46862fdd13e251d6881f109b19856a..43fe53621c5c2a53a753744275ae4a61950aedf1 100644 --- a/io/src/main/java/org/red5/io/object/Output.java +++ b/io/src/main/java/org/red5/io/object/Output.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/RecordSet.java b/io/src/main/java/org/red5/io/object/RecordSet.java index d85003dde77b70222cdb9205991d4d2e3da490e3..87090bdb73110f65cb5726f162b66c9f7f4fafc7 100644 --- a/io/src/main/java/org/red5/io/object/RecordSet.java +++ b/io/src/main/java/org/red5/io/object/RecordSet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/RecordSetPage.java b/io/src/main/java/org/red5/io/object/RecordSetPage.java index 21029a87180a531a3dd1f1bc40f526406a6b0c7d..62a41ad6ea5946b96fdb4303e70f1d1a5b10832b 100644 --- a/io/src/main/java/org/red5/io/object/RecordSetPage.java +++ b/io/src/main/java/org/red5/io/object/RecordSetPage.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/Serializer.java b/io/src/main/java/org/red5/io/object/Serializer.java index 431ec6ef8cad2e14219119a8a47dddffa56759e4..4ffd346ac553d9b6d2739c922373151447741531 100644 --- a/io/src/main/java/org/red5/io/object/Serializer.java +++ b/io/src/main/java/org/red5/io/object/Serializer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/StreamAction.java b/io/src/main/java/org/red5/io/object/StreamAction.java index d9b055c790f8dd783bfe72d92f36c0377b1cadc0..006fb295a95d5edff62ed8bd240e46a73866275c 100644 --- a/io/src/main/java/org/red5/io/object/StreamAction.java +++ b/io/src/main/java/org/red5/io/object/StreamAction.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/UnsignedByte.java b/io/src/main/java/org/red5/io/object/UnsignedByte.java index 9750b55309de31c46bb4f6716ea233c4c2256f97..2cd22db038eec7cf21c9976ff2432ced1d7fd2b2 100644 --- a/io/src/main/java/org/red5/io/object/UnsignedByte.java +++ b/io/src/main/java/org/red5/io/object/UnsignedByte.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/UnsignedInt.java b/io/src/main/java/org/red5/io/object/UnsignedInt.java index 50ce745dcc38bd8f886e4680fe340ec22d60823d..413aac66836a29db3dc2230031c6900cce38eae0 100644 --- a/io/src/main/java/org/red5/io/object/UnsignedInt.java +++ b/io/src/main/java/org/red5/io/object/UnsignedInt.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/UnsignedLong.java b/io/src/main/java/org/red5/io/object/UnsignedLong.java index 7d2257aeb44ee4fddbd32b0f6c0203d48653bbce..5ed5c936e673ff2bf8b7c4a8db42bb43d7b8b79d 100644 --- a/io/src/main/java/org/red5/io/object/UnsignedLong.java +++ b/io/src/main/java/org/red5/io/object/UnsignedLong.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/UnsignedNumber.java b/io/src/main/java/org/red5/io/object/UnsignedNumber.java index be21faf94b792b210c7dd055af1fcc10580b8950..964a5768751106b36b7ea9c4e05c3b38ae08cf69 100644 --- a/io/src/main/java/org/red5/io/object/UnsignedNumber.java +++ b/io/src/main/java/org/red5/io/object/UnsignedNumber.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/object/UnsignedShort.java b/io/src/main/java/org/red5/io/object/UnsignedShort.java index 923ddc42682e40d1dab002a2b00987215003254b..d61cbbcdc23c229aa037bb6141f1b7a0d672c58a 100644 --- a/io/src/main/java/org/red5/io/object/UnsignedShort.java +++ b/io/src/main/java/org/red5/io/object/UnsignedShort.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/ArrayUtils.java b/io/src/main/java/org/red5/io/utils/ArrayUtils.java index 824523d1c8cb48fe50cefede1615bb916b1d8bbe..efc690f3d036a9d2a47c1f7cf9463b9ee1a8b004 100644 --- a/io/src/main/java/org/red5/io/utils/ArrayUtils.java +++ b/io/src/main/java/org/red5/io/utils/ArrayUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/BufferUtils.java b/io/src/main/java/org/red5/io/utils/BufferUtils.java index 8bc5a17d544b177d43ffb7fbf5ea5462f9ac7e68..6c18592447300c4639299bec00f6a928fbefde82 100644 --- a/io/src/main/java/org/red5/io/utils/BufferUtils.java +++ b/io/src/main/java/org/red5/io/utils/BufferUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/ConversionUtils.java b/io/src/main/java/org/red5/io/utils/ConversionUtils.java index a35654e667ef8eeee39dd3c55db71e86477a0c9a..194098905d0d6ad9de5dc775beb32288790c409e 100644 --- a/io/src/main/java/org/red5/io/utils/ConversionUtils.java +++ b/io/src/main/java/org/red5/io/utils/ConversionUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/HexCharset.java b/io/src/main/java/org/red5/io/utils/HexCharset.java index 42d2658a4582e2a75251ba8032f3278ccef46055..41fc1286204975ad58ebf08e416391870ccab4c0 100644 --- a/io/src/main/java/org/red5/io/utils/HexCharset.java +++ b/io/src/main/java/org/red5/io/utils/HexCharset.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/IOUtils.java b/io/src/main/java/org/red5/io/utils/IOUtils.java index 3156132f337f22dce15586c28d06750431e9efe0..fe01fe07f61ce4df2c05675f03df4c76a94dea37 100644 --- a/io/src/main/java/org/red5/io/utils/IOUtils.java +++ b/io/src/main/java/org/red5/io/utils/IOUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/ObjectMap.java b/io/src/main/java/org/red5/io/utils/ObjectMap.java index 0b9c3baca89698b4ce81fb7b17125c2dc41bc88c..e34e5dfba4018a370304e425fd437ec517b80af4 100644 --- a/io/src/main/java/org/red5/io/utils/ObjectMap.java +++ b/io/src/main/java/org/red5/io/utils/ObjectMap.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/RandomGUID.java b/io/src/main/java/org/red5/io/utils/RandomGUID.java index 5636042e3772db7df7f738eed69fe3939e93fd7d..1c489959b16fd1519e85bb27fab81c0762655afd 100644 --- a/io/src/main/java/org/red5/io/utils/RandomGUID.java +++ b/io/src/main/java/org/red5/io/utils/RandomGUID.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/Stax2DomBuilder.java b/io/src/main/java/org/red5/io/utils/Stax2DomBuilder.java index 1c671b965acfd212c948a40b80516faffdab7cff..5a594293325b6af4d649ae9fc0cff66f8c00cdd1 100644 --- a/io/src/main/java/org/red5/io/utils/Stax2DomBuilder.java +++ b/io/src/main/java/org/red5/io/utils/Stax2DomBuilder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/io/utils/XMLUtils.java b/io/src/main/java/org/red5/io/utils/XMLUtils.java index 2435f86180238e075e638e782cdac86101ced258..8ceff7481bf43429ed58d1e7cc2a0b64c4e9e893 100644 --- a/io/src/main/java/org/red5/io/utils/XMLUtils.java +++ b/io/src/main/java/org/red5/io/utils/XMLUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/media/processor/GenericWriterPostProcessor.java b/io/src/main/java/org/red5/media/processor/GenericWriterPostProcessor.java index 98c93f46770d790c98c7e84aeba78ddab4685df1..bdd17232ec5f2001cea74ddf04847029d36db3e8 100644 --- a/io/src/main/java/org/red5/media/processor/GenericWriterPostProcessor.java +++ b/io/src/main/java/org/red5/media/processor/GenericWriterPostProcessor.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/media/processor/IPostProcessor.java b/io/src/main/java/org/red5/media/processor/IPostProcessor.java index 7c7170ae049ef9d134f1589be87fc4195926f4aa..1af674de5e141f8f051b920ce12e30faad1743e6 100644 --- a/io/src/main/java/org/red5/media/processor/IPostProcessor.java +++ b/io/src/main/java/org/red5/media/processor/IPostProcessor.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/main/java/org/red5/media/processor/IPreProcessor.java b/io/src/main/java/org/red5/media/processor/IPreProcessor.java index 7ef99f7894c1497967eb44b00af0e0dc77a2bc43..38cf2b88fac8e7096da9e8afa51dadf31bb977bd 100644 --- a/io/src/main/java/org/red5/media/processor/IPreProcessor.java +++ b/io/src/main/java/org/red5/media/processor/IPreProcessor.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/codec/AVCVideoTest.java b/io/src/test/java/org/red5/codec/AVCVideoTest.java index 9cd4e6d847f0c86d565a520bb9e45670791b4517..128e4c45352b8f34d2e9aaf666c2c87f001e046a 100644 --- a/io/src/test/java/org/red5/codec/AVCVideoTest.java +++ b/io/src/test/java/org/red5/codec/AVCVideoTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/codec/SorensonVideoTest.java b/io/src/test/java/org/red5/codec/SorensonVideoTest.java index 5da557de9cd9e363772a650e26e126a06ec1700e..91e48b2bde193157d5a88b564ca88fc488f9c67a 100644 --- a/io/src/test/java/org/red5/codec/SorensonVideoTest.java +++ b/io/src/test/java/org/red5/codec/SorensonVideoTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/AMF3IOTest.java b/io/src/test/java/org/red5/io/AMF3IOTest.java index b22354bba837fd6845507904d27100721d4d542c..a49273cdb033ca7b9dd8bd1940133553bdf683ce 100644 --- a/io/src/test/java/org/red5/io/AMF3IOTest.java +++ b/io/src/test/java/org/red5/io/AMF3IOTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/AMFIOTest.java b/io/src/test/java/org/red5/io/AMFIOTest.java index f8ca49a449d11546ec84110075da7f8ba982cbf2..e48f1aadc05e7e113806b21a6ec5dfaa9dcc2332 100644 --- a/io/src/test/java/org/red5/io/AMFIOTest.java +++ b/io/src/test/java/org/red5/io/AMFIOTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/AbstractIOTest.java b/io/src/test/java/org/red5/io/AbstractIOTest.java index db392a2bc40aa0c06eeea57a4c263d8b7cb300e4..2cf24f412a6317f74d2374003bb2130c2a4d19c6 100644 --- a/io/src/test/java/org/red5/io/AbstractIOTest.java +++ b/io/src/test/java/org/red5/io/AbstractIOTest.java @@ -1,5 +1,5 @@ /* - * 7 * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, + * 7 * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/FileKeyFrameMetaCacheTest.java b/io/src/test/java/org/red5/io/FileKeyFrameMetaCacheTest.java index 360056d9e7beb6cd75037cc34a3f8cf84c097fd1..a59390b8bc47118fc3f7aa82bdd8129bf1c67a61 100644 --- a/io/src/test/java/org/red5/io/FileKeyFrameMetaCacheTest.java +++ b/io/src/test/java/org/red5/io/FileKeyFrameMetaCacheTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/TestJavaBean.java b/io/src/test/java/org/red5/io/TestJavaBean.java index 2d493fc050885eaec0ee649474c4b39c801813b9..1c6de62be3a0aada7f43610109937d8464c56bc4 100644 --- a/io/src/test/java/org/red5/io/TestJavaBean.java +++ b/io/src/test/java/org/red5/io/TestJavaBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/TestVO.java b/io/src/test/java/org/red5/io/TestVO.java index 031d558b3cef67d03954e857fc3b67d13118b604..615c87d8bb5e1efe5a6b369021194168d4490dc7 100644 --- a/io/src/test/java/org/red5/io/TestVO.java +++ b/io/src/test/java/org/red5/io/TestVO.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/m4a/impl/M4AReaderTest.java b/io/src/test/java/org/red5/io/m4a/impl/M4AReaderTest.java index 3e4f76cc3318b2c60413451ac29a219f780caed0..b5da12f844d1b46b8c1782244325d046c8e7206e 100644 --- a/io/src/test/java/org/red5/io/m4a/impl/M4AReaderTest.java +++ b/io/src/test/java/org/red5/io/m4a/impl/M4AReaderTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/model/CircularRefBean.java b/io/src/test/java/org/red5/io/model/CircularRefBean.java index 2d7f248724fc24d4dbfd2a993d8b765f7987a64f..4ac0cbbd977ffdf717537888b0fb25c4ccf70800 100644 --- a/io/src/test/java/org/red5/io/model/CircularRefBean.java +++ b/io/src/test/java/org/red5/io/model/CircularRefBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/model/SimpleJavaBean.java b/io/src/test/java/org/red5/io/model/SimpleJavaBean.java index 9d0a4d2a7f38b986838afe8760da60214f26718d..32c3ddff8e847c00e9fcf1521ee0442c0f621afa 100644 --- a/io/src/test/java/org/red5/io/model/SimpleJavaBean.java +++ b/io/src/test/java/org/red5/io/model/SimpleJavaBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/mp3/impl/MP3ReaderTest.java b/io/src/test/java/org/red5/io/mp3/impl/MP3ReaderTest.java index ef819ea1cee0ebee082f1082932e220de450a7c7..3991bc8d15b56543941f302535c9290dff0e356b 100644 --- a/io/src/test/java/org/red5/io/mp3/impl/MP3ReaderTest.java +++ b/io/src/test/java/org/red5/io/mp3/impl/MP3ReaderTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/mp4/MP4FrameTest.java b/io/src/test/java/org/red5/io/mp4/MP4FrameTest.java index e887410655c9f1ffb8647382f4269ebfc59cdf31..a10b50f5aaf012cd887a10f20aa1fc9165f2b642 100644 --- a/io/src/test/java/org/red5/io/mp4/MP4FrameTest.java +++ b/io/src/test/java/org/red5/io/mp4/MP4FrameTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/mp4/impl/MP4ReaderTest.java b/io/src/test/java/org/red5/io/mp4/impl/MP4ReaderTest.java index 3c68b2f6671cca0347e98c77158af7cba5878a7b..3a25cb76369434c5b8b0bb37d4191f2c05c1d7c6 100644 --- a/io/src/test/java/org/red5/io/mp4/impl/MP4ReaderTest.java +++ b/io/src/test/java/org/red5/io/mp4/impl/MP4ReaderTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/utils/ConversionUtilsTest.java b/io/src/test/java/org/red5/io/utils/ConversionUtilsTest.java index 7e56205b9e8def61ff6f9ee2599b1fc03c8bb06b..f526fdc69f61c70b81c473f1fe325c4943553aff 100644 --- a/io/src/test/java/org/red5/io/utils/ConversionUtilsTest.java +++ b/io/src/test/java/org/red5/io/utils/ConversionUtilsTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/io/src/test/java/org/red5/io/utils/XMLUtilsTest.java b/io/src/test/java/org/red5/io/utils/XMLUtilsTest.java index 90ac1ab035e91b02cf58c6b05da40ad054f28547..1d915b52ebdc8eef96dadfd52861c40b6bcf576a 100644 --- a/io/src/test/java/org/red5/io/utils/XMLUtilsTest.java +++ b/io/src/test/java/org/red5/io/utils/XMLUtilsTest.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/pom.xml b/pom.xml index bf44f1150c6d16683274f0d106ec8a4dac630680..8c01f81136a9969f45170d72cd408e6952b21c73 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ <name>Red5</name> <description>The Red5 server</description> <groupId>org.red5</groupId> - <version>1.3.24</version> + <version>1.3.25</version> <url>https://github.com/Red5/red5-server</url> <inceptionYear>2005</inceptionYear> <organization> @@ -100,17 +100,17 @@ <bc.version>1.62</bc.version> <mina.version>2.0.23</mina.version> <!-- Can no longer open-end spring, 6.0 forces jdk 17 --> - <spring.version>5.3.24</spring.version> + <spring.version>5.3.25</spring.version> <tomcat.version>8.5.95</tomcat.version> <junit.version>[4.13.1,)</junit.version> <isoparser.version>1.9.39</isoparser.version> - <tika.version>1.26</tika.version> + <tika.version>1.28.5</tika.version> <ehcache.version>2.10.6</ehcache.version> <commons-beanutils.version>1.9.4</commons-beanutils.version> <commons-codec.version>1.13</commons-codec.version> <commons-collections.version>4.4</commons-collections.version> <commons-io.version>2.11.0</commons-io.version> - <commons-lang3.version>3.9</commons-lang3.version> + <commons-lang3.version>3.11</commons-lang3.version> <httpcore.version>[4.4.11,)</httpcore.version> <httpclient.version>[4.5.13,)</httpclient.version> <cglib.version>3.2.7</cglib.version> diff --git a/red5-server.code-workspace b/red5-server.code-workspace index b58da1e06fdff523a0e87a5538d4a510077306f0..35ede7f570177d995811462713efc058f6e73550 100644 --- a/red5-server.code-workspace +++ b/red5-server.code-workspace @@ -7,5 +7,9 @@ "settings": { "java.configuration.updateBuildConfiguration": "automatic", "java.compile.nullAnalysis.mode": "automatic" + }, + "launch": { + "version": "0.2.0", + "configurations": [] } } \ No newline at end of file diff --git a/server/pom.xml b/server/pom.xml index 8b2b7f412f59a6c2b5f48209b1e6ba1577cce04e..c49dce6f6b4603bad7e1432b5c3905e1f3932af8 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>org.red5</groupId> <artifactId>red5-parent</artifactId> - <version>1.3.24</version> + <version>1.3.25</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>red5-server</artifactId> diff --git a/server/src/main/java/org/red5/logging/ContextLoggingListener.java b/server/src/main/java/org/red5/logging/ContextLoggingListener.java index 71cde7a8b871677ffe5fcbf436db9fadf91203f0..a2fdb60007f16a5dffa3d21e4c277a971ca00ffb 100644 --- a/server/src/main/java/org/red5/logging/ContextLoggingListener.java +++ b/server/src/main/java/org/red5/logging/ContextLoggingListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/logging/DerbyLogInterceptor.java b/server/src/main/java/org/red5/logging/DerbyLogInterceptor.java index e0981a84d6e7fd0bade76c2f11ededa77b0868b3..3f86c9d04d73d3dd74c4caf811229a4c2f637efb 100644 --- a/server/src/main/java/org/red5/logging/DerbyLogInterceptor.java +++ b/server/src/main/java/org/red5/logging/DerbyLogInterceptor.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/logging/LoggerContextFilter.java b/server/src/main/java/org/red5/logging/LoggerContextFilter.java index 56c0c3795a367ebb43c7cb122d2e0394a1a97cac..4d07c287f164b13f495f9fb3a88f14d7f602ecdb 100644 --- a/server/src/main/java/org/red5/logging/LoggerContextFilter.java +++ b/server/src/main/java/org/red5/logging/LoggerContextFilter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/logging/W3CAppender.java b/server/src/main/java/org/red5/logging/W3CAppender.java index 6ef8109d7a6846b445703d7d137def04412e01d8..025e77a69aa6c881eb8ad1eb465b4a62ad56090b 100644 --- a/server/src/main/java/org/red5/logging/W3CAppender.java +++ b/server/src/main/java/org/red5/logging/W3CAppender.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/net/websocket/listener/IWebSocketScopeListener.java b/server/src/main/java/org/red5/net/websocket/listener/IWebSocketScopeListener.java index c2380f05f41c934b729fb56e3296a021485980f3..b8393e9a8c141a3055f03107512a7477613f3fcf 100644 --- a/server/src/main/java/org/red5/net/websocket/listener/IWebSocketScopeListener.java +++ b/server/src/main/java/org/red5/net/websocket/listener/IWebSocketScopeListener.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/red5 Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/red5 Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/Context.java b/server/src/main/java/org/red5/server/Context.java index d00272d524a18022c736ab9115a683b18385f658..29b22f3c979c0f6a66c5af1c9be1b7de58001d8c 100644 --- a/server/src/main/java/org/red5/server/Context.java +++ b/server/src/main/java/org/red5/server/Context.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. @@ -185,6 +185,7 @@ public class Context implements IContext, ApplicationContextAware, ContextMXBean */ public void setServiceInvoker(IServiceInvoker serviceInvoker) { this.serviceInvoker = serviceInvoker; + logger.debug("Service invoker: {}", serviceInvoker); } /** @@ -216,14 +217,13 @@ public class Context implements IContext, ApplicationContextAware, ContextMXBean public void setApplicationContext(ApplicationContext context) { this.applicationContext = context; String deploymentType = System.getProperty("red5.deployment.type"); - logger.debug("Deployment type: " + deploymentType); + logger.debug("Deployment type: {}", deploymentType); if (deploymentType == null) { // standalone core context String config = System.getProperty("red5.conf_file"); if (config == null) { config = "red5.xml"; } - //coreContext = new ClassPathXmlApplicationContext(config).useBeanFactory("red5.core").getFactory(); coreContext = (BeanFactory) new ClassPathXmlApplicationContext(config).getBean("red5.core"); } else { logger.info("Setting parent bean factory as core"); diff --git a/server/src/main/java/org/red5/server/CoreHandler.java b/server/src/main/java/org/red5/server/CoreHandler.java index 8f54fcc704c556b439b2fb544c77c92b504491b7..710eda38054a49ef8fc8ad26bd9770e8d4ae11aa 100644 --- a/server/src/main/java/org/red5/server/CoreHandler.java +++ b/server/src/main/java/org/red5/server/CoreHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/Launcher.java b/server/src/main/java/org/red5/server/Launcher.java index f1f62789ccec6afe6d6548767748dd78f9d67dd3..6ad7cd639f9f68deeeb4b520031ec589133da854 100644 --- a/server/src/main/java/org/red5/server/Launcher.java +++ b/server/src/main/java/org/red5/server/Launcher.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/MappingStrategy.java b/server/src/main/java/org/red5/server/MappingStrategy.java index b0be81dedc925344c31fdb125683b2f35ccd78d0..d6d03423950d832ab57388ca747c779f34635101 100644 --- a/server/src/main/java/org/red5/server/MappingStrategy.java +++ b/server/src/main/java/org/red5/server/MappingStrategy.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/PersistableAttributeStore.java b/server/src/main/java/org/red5/server/PersistableAttributeStore.java index 12ae83e790c86bf169f6ab6cd01b627f9b2743ba..c00a8f50acb7046530f41c237ed1d04252c12f25 100644 --- a/server/src/main/java/org/red5/server/PersistableAttributeStore.java +++ b/server/src/main/java/org/red5/server/PersistableAttributeStore.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/adapter/ApplicationAdapter.java b/server/src/main/java/org/red5/server/adapter/ApplicationAdapter.java index 150e851e0cc3af87832a8bf56a74802a7c88f8fd..67af0cfd410745501eb7ff576c6ad29ae2f5983a 100644 --- a/server/src/main/java/org/red5/server/adapter/ApplicationAdapter.java +++ b/server/src/main/java/org/red5/server/adapter/ApplicationAdapter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/adapter/ApplicationLifecycle.java b/server/src/main/java/org/red5/server/adapter/ApplicationLifecycle.java index 5bb6f4a4cd772255470000d810704ff3c68fd08f..5cb829678a2bf8e9acd8cc61ed77a8925ad885f3 100644 --- a/server/src/main/java/org/red5/server/adapter/ApplicationLifecycle.java +++ b/server/src/main/java/org/red5/server/adapter/ApplicationLifecycle.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/adapter/Config.java b/server/src/main/java/org/red5/server/adapter/Config.java index e588dad536cab3c89371d412cae5784eeb100ddc..a6fa37110cede089c4275c1c414b4820c3e29563 100644 --- a/server/src/main/java/org/red5/server/adapter/Config.java +++ b/server/src/main/java/org/red5/server/adapter/Config.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/adapter/MultiThreadedApplicationAdapter.java b/server/src/main/java/org/red5/server/adapter/MultiThreadedApplicationAdapter.java index 91c40c6954135f43c482bfc26f3c0dd79c15760e..1b0597682ab85f2703c840461bee82f9203c0ee8 100644 --- a/server/src/main/java/org/red5/server/adapter/MultiThreadedApplicationAdapter.java +++ b/server/src/main/java/org/red5/server/adapter/MultiThreadedApplicationAdapter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/adapter/StatefulScopeWrappingAdapter.java b/server/src/main/java/org/red5/server/adapter/StatefulScopeWrappingAdapter.java index 69df04ffda1acf2a9b32d2f8dc37a4688abccc44..53b5ffa209422c83d22374434256c1237f66af97 100644 --- a/server/src/main/java/org/red5/server/adapter/StatefulScopeWrappingAdapter.java +++ b/server/src/main/java/org/red5/server/adapter/StatefulScopeWrappingAdapter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/scope/IScopeResolver.java b/server/src/main/java/org/red5/server/api/scope/IScopeResolver.java index b9a68a82a5be7dd99ad612cce15f7d395999c0d5..4270f6df36c80ffeba80e810500b515fdc253889 100644 --- a/server/src/main/java/org/red5/server/api/scope/IScopeResolver.java +++ b/server/src/main/java/org/red5/server/api/scope/IScopeResolver.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/session/ISession.java b/server/src/main/java/org/red5/server/api/session/ISession.java index cd283316807186b99073eb42068c8710968fcd9e..374c7572d494c2c0e24764ea76777fbbd921f96c 100644 --- a/server/src/main/java/org/red5/server/api/session/ISession.java +++ b/server/src/main/java/org/red5/server/api/session/ISession.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/statistics/IStatisticsService.java b/server/src/main/java/org/red5/server/api/statistics/IStatisticsService.java index 4e78fccd6b8c612087cac9daaac701e1297872ae..0f344653a8af6b88d1b15aa2c8b9599a9325aa93 100644 --- a/server/src/main/java/org/red5/server/api/statistics/IStatisticsService.java +++ b/server/src/main/java/org/red5/server/api/statistics/IStatisticsService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/stream/IServerStream.java b/server/src/main/java/org/red5/server/api/stream/IServerStream.java index 95c90bc06a08f1912deb0ba586c6fd82fa7c88da..331a8867edeb219b392cd6b80b4e30891d2aa5aa 100644 --- a/server/src/main/java/org/red5/server/api/stream/IServerStream.java +++ b/server/src/main/java/org/red5/server/api/stream/IServerStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/stream/IStreamHandler.java b/server/src/main/java/org/red5/server/api/stream/IStreamHandler.java index 8263b19a61c3d362f38a1082369bc34a027ec5ac..cdfb55802635d077135743e4e933d81c9831577b 100644 --- a/server/src/main/java/org/red5/server/api/stream/IStreamHandler.java +++ b/server/src/main/java/org/red5/server/api/stream/IStreamHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/stream/IStreamSecurityService.java b/server/src/main/java/org/red5/server/api/stream/IStreamSecurityService.java index 9a13ff19d98d2bc87ece1b75074e4ff999f7b8de..065c5f87d06e25970982997c84ce5f83536aba21 100644 --- a/server/src/main/java/org/red5/server/api/stream/IStreamSecurityService.java +++ b/server/src/main/java/org/red5/server/api/stream/IStreamSecurityService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/stream/IStreamableFile.java b/server/src/main/java/org/red5/server/api/stream/IStreamableFile.java index e15d7137ea3368feb2d782ddf5f7f1af6648bcb7..162cfe7e654657ace000d07540d7e79b7560bdc5 100644 --- a/server/src/main/java/org/red5/server/api/stream/IStreamableFile.java +++ b/server/src/main/java/org/red5/server/api/stream/IStreamableFile.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/stream/support/DenyAllStreamAccess.java b/server/src/main/java/org/red5/server/api/stream/support/DenyAllStreamAccess.java index 4b0f4aa5181a44c449e8e9068804819fda85b1b1..b02e64fc00fbdab730a5629ddb1ae624049b5329 100644 --- a/server/src/main/java/org/red5/server/api/stream/support/DenyAllStreamAccess.java +++ b/server/src/main/java/org/red5/server/api/stream/support/DenyAllStreamAccess.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/api/stream/support/StreamUtils.java b/server/src/main/java/org/red5/server/api/stream/support/StreamUtils.java index b1227d16edf5f84a3b50c426ef364bfabc7007cc..69e01208deaa98fe0596f7d0cf86cca09cc6b29f 100644 --- a/server/src/main/java/org/red5/server/api/stream/support/StreamUtils.java +++ b/server/src/main/java/org/red5/server/api/stream/support/StreamUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/exception/AccessDeniedException.java b/server/src/main/java/org/red5/server/exception/AccessDeniedException.java index f34d7a8373838768472d0fea2238f0ee64811621..8a5c84a3cece1edc2a9b947eb657272f093b4d91 100644 --- a/server/src/main/java/org/red5/server/exception/AccessDeniedException.java +++ b/server/src/main/java/org/red5/server/exception/AccessDeniedException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/exception/ScopeHandlerNotFoundException.java b/server/src/main/java/org/red5/server/exception/ScopeHandlerNotFoundException.java index 318c154880dbbc618fcad174e9fd494ec384bef2..47fec14f93b6da7655d45829ef0f71f4291237b8 100644 --- a/server/src/main/java/org/red5/server/exception/ScopeHandlerNotFoundException.java +++ b/server/src/main/java/org/red5/server/exception/ScopeHandlerNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/exception/ServiceNotFoundException.java b/server/src/main/java/org/red5/server/exception/ServiceNotFoundException.java index 84a88a6dd3eb3a37bc7094bd1b8416df8b714eaf..047b02b9a38c34b5ab935559155b92007d7580fc 100644 --- a/server/src/main/java/org/red5/server/exception/ServiceNotFoundException.java +++ b/server/src/main/java/org/red5/server/exception/ServiceNotFoundException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/exception/SharedObjectException.java b/server/src/main/java/org/red5/server/exception/SharedObjectException.java index 0b08e6e751945d965e67b1548ccf42dfb7288b4a..5417f42a61af7f6a1917383b8c94ffcc19a20b7a 100644 --- a/server/src/main/java/org/red5/server/exception/SharedObjectException.java +++ b/server/src/main/java/org/red5/server/exception/SharedObjectException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/exception/StreamControlException.java b/server/src/main/java/org/red5/server/exception/StreamControlException.java index d06272bdbbe99b6f0798b74c014e55ed8e3dd5de..c51c9b9083b03fb8ef303949c97fc8c76bbfea5c 100644 --- a/server/src/main/java/org/red5/server/exception/StreamControlException.java +++ b/server/src/main/java/org/red5/server/exception/StreamControlException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/exception/StreamDataException.java b/server/src/main/java/org/red5/server/exception/StreamDataException.java index 2b7833df77f27f1a9313f01c6ab32aab1d413e4c..86166d64ace2d9e93219f167d53dafe1cf5a3bd5 100644 --- a/server/src/main/java/org/red5/server/exception/StreamDataException.java +++ b/server/src/main/java/org/red5/server/exception/StreamDataException.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/JMXUtil.java b/server/src/main/java/org/red5/server/jmx/JMXUtil.java index bb8e14fb9e857b9876df197c608e9eeb2ffe77ac..7ebc4353fe9a64c84e7b48179bec4d7e7816804d 100644 --- a/server/src/main/java/org/red5/server/jmx/JMXUtil.java +++ b/server/src/main/java/org/red5/server/jmx/JMXUtil.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/ClientMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/ClientMXBean.java index 0369d30315ffedf26e92250d75c111eeb66aa83a..aea78e24b435e63d2add25d82b26de7215a6c85f 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/ClientMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/ClientMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/ConnectionMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/ConnectionMXBean.java index b29b2b7aca6a9574c0b12e8232d636f6d9f6d7c2..259400bf55a83f301e60c226a10d152e03f55b86 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/ConnectionMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/ConnectionMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/ContextMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/ContextMXBean.java index 530315a4c3f099f23e944c87d24c980929cb2925..7e4799c24f4d623332d7a8e982e22d0944fe088d 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/ContextMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/ContextMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/CoreHandlerMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/CoreHandlerMXBean.java index bb2812f0af287fc043c900a68f64315a598e60c0..0ac9a0bcec3f913e9e4fb071977d1996464d15d0 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/CoreHandlerMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/CoreHandlerMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/GlobalScopeMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/GlobalScopeMXBean.java index 8f523fc7496f093e361c8cf73e4412431710d6a6..a4b068b14ca1d7b65d5934e95f39fb3d856af556 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/GlobalScopeMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/GlobalScopeMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/Red5MXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/Red5MXBean.java index 100bb21f1c9ec75b588d34b14ac72df6e497bffd..28f386e3f02c7f1ab31ddf0af57d0e39ccac7aba 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/Red5MXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/Red5MXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/TomcatVHostLoaderMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/TomcatVHostLoaderMXBean.java index cf5d1b29125a1dd8098fcdeb0568e1f5a3cf803d..e71c337003cf256a948ba1f1646b30a7ba4d7670 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/TomcatVHostLoaderMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/TomcatVHostLoaderMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/jmx/mxbeans/WebScopeMXBean.java b/server/src/main/java/org/red5/server/jmx/mxbeans/WebScopeMXBean.java index 416d40c86cd4ea5b68cce93e6e4afe1b7e492cab..105166a6410b10dc8d995807d8427817f1904947 100644 --- a/server/src/main/java/org/red5/server/jmx/mxbeans/WebScopeMXBean.java +++ b/server/src/main/java/org/red5/server/jmx/mxbeans/WebScopeMXBean.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/messaging/IPullableProvider.java b/server/src/main/java/org/red5/server/messaging/IPullableProvider.java index 67a6d2cb4187e51ff062a0d72c4f678c192e26a3..058ac501c4e2e2aadc8e4ff87ed584fcf9e2319b 100644 --- a/server/src/main/java/org/red5/server/messaging/IPullableProvider.java +++ b/server/src/main/java/org/red5/server/messaging/IPullableProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/messaging/InMemoryPullPullPipe.java b/server/src/main/java/org/red5/server/messaging/InMemoryPullPullPipe.java index 8ac3d2d5ec9a4b81889a16f51b51345f768a012b..dd47a388bd19fdf693af77811ab6beace731e1c6 100644 --- a/server/src/main/java/org/red5/server/messaging/InMemoryPullPullPipe.java +++ b/server/src/main/java/org/red5/server/messaging/InMemoryPullPullPipe.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/messaging/PipeUtils.java b/server/src/main/java/org/red5/server/messaging/PipeUtils.java index a80cdae7b16cb8824d6dcc705e267112ae116bf5..6efecee31b6cf27da95d9b644b50e2b94c7ec1de 100644 --- a/server/src/main/java/org/red5/server/messaging/PipeUtils.java +++ b/server/src/main/java/org/red5/server/messaging/PipeUtils.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/messaging/ServiceAdapter.java b/server/src/main/java/org/red5/server/messaging/ServiceAdapter.java index 5f83b5821dc8b139c58e2c5e1c0bc49b7db4e955..66fcb11e9d206ef5c9ec5f637e48ee5273d5e3e4 100644 --- a/server/src/main/java/org/red5/server/messaging/ServiceAdapter.java +++ b/server/src/main/java/org/red5/server/messaging/ServiceAdapter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/IConnectionEventQueue.java b/server/src/main/java/org/red5/server/net/IConnectionEventQueue.java index 8192b739eefe815cad8dbeeee27afd17ec4cb3ec..a4a694848c6a4ecaa22bf3a6df957f7969a46880 100644 --- a/server/src/main/java/org/red5/server/net/IConnectionEventQueue.java +++ b/server/src/main/java/org/red5/server/net/IConnectionEventQueue.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/proxy/DebugProxyHandler.java b/server/src/main/java/org/red5/server/net/proxy/DebugProxyHandler.java index 50581502dfb7fa22f9866cf6cd79e7610e81292f..7d7975fc3fccf51ee9564a560a23b02a618dfda0 100644 --- a/server/src/main/java/org/red5/server/net/proxy/DebugProxyHandler.java +++ b/server/src/main/java/org/red5/server/net/proxy/DebugProxyHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/proxy/NetworkDumpFilter.java b/server/src/main/java/org/red5/server/net/proxy/NetworkDumpFilter.java index aed212316f7fc1e23ee8d3fd02cbaf0312f51885..900035e8393b56d9490e25b46f6d9d01630a1828 100644 --- a/server/src/main/java/org/red5/server/net/proxy/NetworkDumpFilter.java +++ b/server/src/main/java/org/red5/server/net/proxy/NetworkDumpFilter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/proxy/ProxyFilter.java b/server/src/main/java/org/red5/server/net/proxy/ProxyFilter.java index 9281ddad6e3a0b824cde6046e36eec5d1d50a5d4..02c5b0b56eec5ac3fada50fa6d34db45d4b37a75 100644 --- a/server/src/main/java/org/red5/server/net/proxy/ProxyFilter.java +++ b/server/src/main/java/org/red5/server/net/proxy/ProxyFilter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmp/IRTMPConnManager.java b/server/src/main/java/org/red5/server/net/rtmp/IRTMPConnManager.java index 1c5add5b803f40fecc1ca0a0b3d405a28fa8eb04..44508e2e14c8c7e977ac569919bc4c1ea1e2e3d1 100644 --- a/server/src/main/java/org/red5/server/net/rtmp/IRTMPConnManager.java +++ b/server/src/main/java/org/red5/server/net/rtmp/IRTMPConnManager.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmp/InboundHandshake.java b/server/src/main/java/org/red5/server/net/rtmp/InboundHandshake.java index 206adbf7efa9c2c1a90ef93b722100d111185f18..a0c5b618848c9f178d1a9d66658d472cd9e862e8 100644 --- a/server/src/main/java/org/red5/server/net/rtmp/InboundHandshake.java +++ b/server/src/main/java/org/red5/server/net/rtmp/InboundHandshake.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmp/RTMPConnManager.java b/server/src/main/java/org/red5/server/net/rtmp/RTMPConnManager.java index 17a57b025e60d99d02a076d6227c8361a3f77031..a40926549a0c8bd235cd604160ac402babd2172a 100644 --- a/server/src/main/java/org/red5/server/net/rtmp/RTMPConnManager.java +++ b/server/src/main/java/org/red5/server/net/rtmp/RTMPConnManager.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaIoHandler.java b/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaIoHandler.java index f0e7927d6bcaffe1cff5e01947f72ea1464e7ff0..ed851b4e164655091d1e9dc44f54b1b03483cc2a 100644 --- a/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaIoHandler.java +++ b/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaIoHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaTransport.java b/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaTransport.java index bed27af1b282d1f51f86cf44bcdb9b3e403339d4..594a51a7e8a99305fd72de9548f319ab7a7416ad 100644 --- a/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaTransport.java +++ b/server/src/main/java/org/red5/server/net/rtmp/RTMPMinaTransport.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaCodecFactory.java b/server/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaCodecFactory.java index 8fb6db9812166a55861f615e1dcb927a0ba81244..b044551a3e2e284b71139e794b64dc2e0cdf32c2 100644 --- a/server/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaCodecFactory.java +++ b/server/src/main/java/org/red5/server/net/rtmp/codec/RTMPMinaCodecFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmpe/RTMPEIoFilter.java b/server/src/main/java/org/red5/server/net/rtmpe/RTMPEIoFilter.java index b1557bcf8456d38351e41a738048f77da48e6688..e3518a159c394f1ed07f70e2e7b60f290a168018 100644 --- a/server/src/main/java/org/red5/server/net/rtmpe/RTMPEIoFilter.java +++ b/server/src/main/java/org/red5/server/net/rtmpe/RTMPEIoFilter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmps/RTMPSIoFilter.java b/server/src/main/java/org/red5/server/net/rtmps/RTMPSIoFilter.java index e8599e171ce70ed107beb7f0b8a71963fa091393..ad041a8991e21ab8e5e6045ce8a37b5cf9765211 100644 --- a/server/src/main/java/org/red5/server/net/rtmps/RTMPSIoFilter.java +++ b/server/src/main/java/org/red5/server/net/rtmps/RTMPSIoFilter.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmps/RTMPSMinaIoHandler.java b/server/src/main/java/org/red5/server/net/rtmps/RTMPSMinaIoHandler.java index 94679b101d846549c640e7d5abfcd78c0ec5a3ce..08824535c2ea9c8d32be24225cd4d55f2bee6088 100644 --- a/server/src/main/java/org/red5/server/net/rtmps/RTMPSMinaIoHandler.java +++ b/server/src/main/java/org/red5/server/net/rtmps/RTMPSMinaIoHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmpt/BaseRTMPTConnection.java b/server/src/main/java/org/red5/server/net/rtmpt/BaseRTMPTConnection.java index 9e41398a17a336bb9d2bcc72c51d4423b85ff904..3dbaa8b66878075747c26071a5d08cd6eda47508 100644 --- a/server/src/main/java/org/red5/server/net/rtmpt/BaseRTMPTConnection.java +++ b/server/src/main/java/org/red5/server/net/rtmpt/BaseRTMPTConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmpt/RTMPTConnection.java b/server/src/main/java/org/red5/server/net/rtmpt/RTMPTConnection.java index 7eb9a2fb8bbc9251056674992c13a66c5736d84a..18c25af76d3a40a5dbc8f004725a80caf6813388 100644 --- a/server/src/main/java/org/red5/server/net/rtmpt/RTMPTConnection.java +++ b/server/src/main/java/org/red5/server/net/rtmpt/RTMPTConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java b/server/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java index 8925cdf7c9e90e976b1ec8c51bb838f7dede70b0..0a82e9ad32ebab7dc57c26e99da2e94ecf280225 100644 --- a/server/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java +++ b/server/src/main/java/org/red5/server/net/rtmpt/RTMPTHandler.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/net/rtmpt/RTMPTServlet.java b/server/src/main/java/org/red5/server/net/rtmpt/RTMPTServlet.java index ac063fc26f3d58a003c7cdb1f4abcb645d250155..18bd401a698f2a8161ad0a0aaaf36763bd13aea7 100644 --- a/server/src/main/java/org/red5/server/net/rtmpt/RTMPTServlet.java +++ b/server/src/main/java/org/red5/server/net/rtmpt/RTMPTServlet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/persistence/FilePersistence.java b/server/src/main/java/org/red5/server/persistence/FilePersistence.java index 4b769e36f7705a74fa0f1bfa830c1043b6ea27f4..c983308f9d66c2da1f8dd59e92a22cf60acc1037 100644 --- a/server/src/main/java/org/red5/server/persistence/FilePersistence.java +++ b/server/src/main/java/org/red5/server/persistence/FilePersistence.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/plugin/PluginDescriptor.java b/server/src/main/java/org/red5/server/plugin/PluginDescriptor.java index 64819fdc063f94b943eb684b56f16e8f40eb70c2..7f8e7b23e0cde4a9ba32fdbabf484b9630f239c8 100644 --- a/server/src/main/java/org/red5/server/plugin/PluginDescriptor.java +++ b/server/src/main/java/org/red5/server/plugin/PluginDescriptor.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/plugin/PluginLauncher.java b/server/src/main/java/org/red5/server/plugin/PluginLauncher.java index 24fece29239231e555c21e1b89e5275c933531b1..be41f84abf672420a3e02ef03435abbdf201834d 100644 --- a/server/src/main/java/org/red5/server/plugin/PluginLauncher.java +++ b/server/src/main/java/org/red5/server/plugin/PluginLauncher.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/plugin/PluginRegistry.java b/server/src/main/java/org/red5/server/plugin/PluginRegistry.java index 7ecd67ab4100915b45bd062f7184b2934d7ca650..f565cab042b337791eb039ae7448cfc05b3e064c 100644 --- a/server/src/main/java/org/red5/server/plugin/PluginRegistry.java +++ b/server/src/main/java/org/red5/server/plugin/PluginRegistry.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/plugin/Red5Plugin.java b/server/src/main/java/org/red5/server/plugin/Red5Plugin.java index 53c5ce5790861e17a92f67cc7e9f8e03c7354a70..b0f06427e320410e35c68a2b14035f55aae82378 100644 --- a/server/src/main/java/org/red5/server/plugin/Red5Plugin.java +++ b/server/src/main/java/org/red5/server/plugin/Red5Plugin.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/scope/BroadcastScope.java b/server/src/main/java/org/red5/server/scope/BroadcastScope.java index b740798a948b16cde62c22a9412cf6b2cd14f8f3..8fb44dabba892dba6d26fb211fc7847ede6016a5 100644 --- a/server/src/main/java/org/red5/server/scope/BroadcastScope.java +++ b/server/src/main/java/org/red5/server/scope/BroadcastScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/scope/GlobalScope.java b/server/src/main/java/org/red5/server/scope/GlobalScope.java index 6e0585d686588a331833afe972655a70b621ef34..3e8c82243bd02e9ed0f9f2c2937929c315c4d7b0 100644 --- a/server/src/main/java/org/red5/server/scope/GlobalScope.java +++ b/server/src/main/java/org/red5/server/scope/GlobalScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/scope/ScopeResolver.java b/server/src/main/java/org/red5/server/scope/ScopeResolver.java index eab7592e080202cc46fcf1891f2c938942179cc3..8abb31b845affa14b77cf6973021f89d2ff99624 100644 --- a/server/src/main/java/org/red5/server/scope/ScopeResolver.java +++ b/server/src/main/java/org/red5/server/scope/ScopeResolver.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/scope/WebScope.java b/server/src/main/java/org/red5/server/scope/WebScope.java index d5aa045ab8ad7c8189c1558b0214cf5a7cabf7a5..1f0cdf32b7e6affada99b83c64243dd9c538be79 100644 --- a/server/src/main/java/org/red5/server/scope/WebScope.java +++ b/server/src/main/java/org/red5/server/scope/WebScope.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/security/IRed5Realm.java b/server/src/main/java/org/red5/server/security/IRed5Realm.java index a2e3d79955475b33598e5039065af376219e504e..cf64fc23ea69e92a4ad815ecfdb8a3c3f476a1ae 100644 --- a/server/src/main/java/org/red5/server/security/IRed5Realm.java +++ b/server/src/main/java/org/red5/server/security/IRed5Realm.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/security/jaas/SimpleLoginModule.java b/server/src/main/java/org/red5/server/security/jaas/SimpleLoginModule.java index 5818aa7db0d9345e1c85da5411e285bc524505b0..749a684b9bca86774e2d85567107d0f5603649cb 100644 --- a/server/src/main/java/org/red5/server/security/jaas/SimpleLoginModule.java +++ b/server/src/main/java/org/red5/server/security/jaas/SimpleLoginModule.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/security/jaas/SimplePrincipal.java b/server/src/main/java/org/red5/server/security/jaas/SimplePrincipal.java index b0a0706eaa2dbfa231c707ef420ac16e94aa1614..6fe3c3891ee9b1a0770a6e78b013a084086c1f13 100644 --- a/server/src/main/java/org/red5/server/security/jaas/SimplePrincipal.java +++ b/server/src/main/java/org/red5/server/security/jaas/SimplePrincipal.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/BaseStreamableFileService.java b/server/src/main/java/org/red5/server/service/BaseStreamableFileService.java index b60330ba229bafaa31b8edd0c0a7f8ece97e4ee9..3aeb0b187bf6b5db261a7674a8ba034904051b62 100644 --- a/server/src/main/java/org/red5/server/service/BaseStreamableFileService.java +++ b/server/src/main/java/org/red5/server/service/BaseStreamableFileService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/ContextServiceResolver.java b/server/src/main/java/org/red5/server/service/ContextServiceResolver.java index d2b2c378eb3d63f9af0ce5b95a8ca8239e858615..ff612e0cd9ea9099cd0512d262386d41adfd1c3e 100644 --- a/server/src/main/java/org/red5/server/service/ContextServiceResolver.java +++ b/server/src/main/java/org/red5/server/service/ContextServiceResolver.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/HandlerServiceResolver.java b/server/src/main/java/org/red5/server/service/HandlerServiceResolver.java index 7274435e5cdb1f1f5ea34345919227d70eb7ceba..69d5cbcdd594ea7dc0e181cb69a8900a597ab601 100644 --- a/server/src/main/java/org/red5/server/service/HandlerServiceResolver.java +++ b/server/src/main/java/org/red5/server/service/HandlerServiceResolver.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/ScopeServiceResolver.java b/server/src/main/java/org/red5/server/service/ScopeServiceResolver.java index 59d0c7c6895ccf7662c41e4b93412f7f9dee3b57..2f4fe4fc95c2237477bc4233cba991959a5fee44 100644 --- a/server/src/main/java/org/red5/server/service/ScopeServiceResolver.java +++ b/server/src/main/java/org/red5/server/service/ScopeServiceResolver.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/ShutdownServer.java b/server/src/main/java/org/red5/server/service/ShutdownServer.java index ef0fa2ecd749b3f67c181aca30d565c07447d958..3a72cc807de65ab2151f4185d4b1512dde2df1b2 100644 --- a/server/src/main/java/org/red5/server/service/ShutdownServer.java +++ b/server/src/main/java/org/red5/server/service/ShutdownServer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/flv/IFLVService.java b/server/src/main/java/org/red5/server/service/flv/IFLVService.java index f11a71edebcd9ce9b257fb8902447f5485414e51..a48c2791e933e06c87c28fa307b86b5b93af9432 100644 --- a/server/src/main/java/org/red5/server/service/flv/IFLVService.java +++ b/server/src/main/java/org/red5/server/service/flv/IFLVService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/flv/impl/FLVService.java b/server/src/main/java/org/red5/server/service/flv/impl/FLVService.java index 7ca684d218afab09d3ce7646213c28054bac56cb..e38574c6fe95e53752d8eccdfe34094c5d888dd5 100644 --- a/server/src/main/java/org/red5/server/service/flv/impl/FLVService.java +++ b/server/src/main/java/org/red5/server/service/flv/impl/FLVService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/m4a/IM4AService.java b/server/src/main/java/org/red5/server/service/m4a/IM4AService.java index 296df940acbf87eca66d09b3b6526c0471dde1b3..c68e3b72c9c8b6187418bbea645b46cf09cf428a 100644 --- a/server/src/main/java/org/red5/server/service/m4a/IM4AService.java +++ b/server/src/main/java/org/red5/server/service/m4a/IM4AService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/m4a/impl/M4AService.java b/server/src/main/java/org/red5/server/service/m4a/impl/M4AService.java index f8398c6c196dd5b5a377f4b46380493ccd57a608..41e7c94b9bea8282b3470aedc80b9d37450d6d73 100644 --- a/server/src/main/java/org/red5/server/service/m4a/impl/M4AService.java +++ b/server/src/main/java/org/red5/server/service/m4a/impl/M4AService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/mp3/IMP3Service.java b/server/src/main/java/org/red5/server/service/mp3/IMP3Service.java index 82d236259bb5d54ecb1fbb92645a991b118547f3..e25e4e259cbefdffdcdd9942de525305563a79e9 100644 --- a/server/src/main/java/org/red5/server/service/mp3/IMP3Service.java +++ b/server/src/main/java/org/red5/server/service/mp3/IMP3Service.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/mp3/impl/MP3Service.java b/server/src/main/java/org/red5/server/service/mp3/impl/MP3Service.java index ccb4725b33b9b08c057e282ea6d5b78b5ead6aac..7f81fb43ada33913eeb7f3af6fdc3949bdb85af6 100644 --- a/server/src/main/java/org/red5/server/service/mp3/impl/MP3Service.java +++ b/server/src/main/java/org/red5/server/service/mp3/impl/MP3Service.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/mp4/IMP4Service.java b/server/src/main/java/org/red5/server/service/mp4/IMP4Service.java index 972380eee1c971c442bbfc2adc57388607091f07..6fe79022d6a44d2567d00dbae48b5e2bf0e05e83 100644 --- a/server/src/main/java/org/red5/server/service/mp4/IMP4Service.java +++ b/server/src/main/java/org/red5/server/service/mp4/IMP4Service.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/service/mp4/impl/MP4Service.java b/server/src/main/java/org/red5/server/service/mp4/impl/MP4Service.java index 52fbed853be87aedaaae6dae3abace9b4ffb0080..7e72bb1eb502a6e8d3d6a533270633a4dea49a0b 100644 --- a/server/src/main/java/org/red5/server/service/mp4/impl/MP4Service.java +++ b/server/src/main/java/org/red5/server/service/mp4/impl/MP4Service.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/session/Session.java b/server/src/main/java/org/red5/server/session/Session.java index ea4fd84d0cdcf0b2227f3491a237b65d68b21e4e..4a68d527c347fed718332cd18a11de1cdcb8ad8f 100644 --- a/server/src/main/java/org/red5/server/session/Session.java +++ b/server/src/main/java/org/red5/server/session/Session.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/statistics/StatisticsService.java b/server/src/main/java/org/red5/server/statistics/StatisticsService.java index 7776ca98a042726de8c3634e4412d2f38c34141d..4398516eb0d415531fbaee611216952ac2fd4819 100644 --- a/server/src/main/java/org/red5/server/statistics/StatisticsService.java +++ b/server/src/main/java/org/red5/server/statistics/StatisticsService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/ConsumerService.java b/server/src/main/java/org/red5/server/stream/ConsumerService.java index 004eab24801ed2386a50a90df6eeda7f4bfdda72..5d91d6eb05c65dfd81f8dea18632c3b9fe3817d5 100644 --- a/server/src/main/java/org/red5/server/stream/ConsumerService.java +++ b/server/src/main/java/org/red5/server/stream/ConsumerService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/FileStreamSource.java b/server/src/main/java/org/red5/server/stream/FileStreamSource.java index 4ab828d487477206ee1a71f971819fd8a8e9e324..186a3500679a1e6f94f46a8bf1792e60e6859e00 100644 --- a/server/src/main/java/org/red5/server/stream/FileStreamSource.java +++ b/server/src/main/java/org/red5/server/stream/FileStreamSource.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/ISeekableStreamSource.java b/server/src/main/java/org/red5/server/stream/ISeekableStreamSource.java index aacd5756045435f123901665470f4793693fc094..42c2109a60d232a05da06b374349fd6d10c98b8a 100644 --- a/server/src/main/java/org/red5/server/stream/ISeekableStreamSource.java +++ b/server/src/main/java/org/red5/server/stream/ISeekableStreamSource.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/IStreamControl.java b/server/src/main/java/org/red5/server/stream/IStreamControl.java index ce8fc7f7c8d65502151a9d1e96d0a29d97e20b51..d92a15da7eb8b1d13627a030422e4f1ffd338b85 100644 --- a/server/src/main/java/org/red5/server/stream/IStreamControl.java +++ b/server/src/main/java/org/red5/server/stream/IStreamControl.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/IStreamSource.java b/server/src/main/java/org/red5/server/stream/IStreamSource.java index 12078b504ff6a69ec4d8c3c87a7ed7660a27270f..cd9507e6ed7da809b4c40fbd29d7de7e88609e38 100644 --- a/server/src/main/java/org/red5/server/stream/IStreamSource.java +++ b/server/src/main/java/org/red5/server/stream/IStreamSource.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/ITokenBucket.java b/server/src/main/java/org/red5/server/stream/ITokenBucket.java index 71be149e910098e82efce2e80b3b6225e0575210..c068866ddfea3ec92b92a964ec170141d9cd63e7 100644 --- a/server/src/main/java/org/red5/server/stream/ITokenBucket.java +++ b/server/src/main/java/org/red5/server/stream/ITokenBucket.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/ITokenBucketService.java b/server/src/main/java/org/red5/server/stream/ITokenBucketService.java index 4238c72359e662964f92b235ca46979c9b8a194d..f7152f1b8f0d0c2341e10862eb87c84a4a6cc2ca 100644 --- a/server/src/main/java/org/red5/server/stream/ITokenBucketService.java +++ b/server/src/main/java/org/red5/server/stream/ITokenBucketService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/PlayBuffer.java b/server/src/main/java/org/red5/server/stream/PlayBuffer.java index 53727f60f8ecca45edcae6d775204bd8f7ce45d9..ae57abefe3d35eac92f993b2dd12173e6f292ec2 100644 --- a/server/src/main/java/org/red5/server/stream/PlayBuffer.java +++ b/server/src/main/java/org/red5/server/stream/PlayBuffer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/ProviderService.java b/server/src/main/java/org/red5/server/stream/ProviderService.java index e48f0225b17ab81ba1708dada85ddc0630e7ccd2..284be3670465a57775932de10f8cf6439a812c50 100644 --- a/server/src/main/java/org/red5/server/stream/ProviderService.java +++ b/server/src/main/java/org/red5/server/stream/ProviderService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/RtmpSampleAccess.java b/server/src/main/java/org/red5/server/stream/RtmpSampleAccess.java index 5932aabd6b269962803624cb3cfd4c8110440cf7..6d335a48f09ed84e8f37d4fc2cf31fa135df03a6 100644 --- a/server/src/main/java/org/red5/server/stream/RtmpSampleAccess.java +++ b/server/src/main/java/org/red5/server/stream/RtmpSampleAccess.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/ServerStream.java b/server/src/main/java/org/red5/server/stream/ServerStream.java index 37db1aa620881a0faa65212cd876b2c87130d437..5bf775f42d392fb567e502927594aee9b2994c98 100644 --- a/server/src/main/java/org/red5/server/stream/ServerStream.java +++ b/server/src/main/java/org/red5/server/stream/ServerStream.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/filter/StreamBandwidthController.java b/server/src/main/java/org/red5/server/stream/filter/StreamBandwidthController.java index 03571a6f0ab45b5a29feaedf32fdf5d8a1b1a9de..29df71d68a69b70824b9bc550074f6b3678fcaf3 100644 --- a/server/src/main/java/org/red5/server/stream/filter/StreamBandwidthController.java +++ b/server/src/main/java/org/red5/server/stream/filter/StreamBandwidthController.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/stream/provider/ConnectionProvider.java b/server/src/main/java/org/red5/server/stream/provider/ConnectionProvider.java index 11a68b1b07a778e82f7ffdff95c7922b94a75bd1..e9f547b3dc750e44deaa372871bef779283b17f2 100644 --- a/server/src/main/java/org/red5/server/stream/provider/ConnectionProvider.java +++ b/server/src/main/java/org/red5/server/stream/provider/ConnectionProvider.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/EmbeddedTomcat.java b/server/src/main/java/org/red5/server/tomcat/EmbeddedTomcat.java index 98801850ee5e5760aff9887dbab5e0f26ecc642b..2f111b5ee5ef3ac7294da900ab46168430f3dd1e 100644 --- a/server/src/main/java/org/red5/server/tomcat/EmbeddedTomcat.java +++ b/server/src/main/java/org/red5/server/tomcat/EmbeddedTomcat.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/TomcatApplicationContext.java b/server/src/main/java/org/red5/server/tomcat/TomcatApplicationContext.java index b0e578cfc07cab4b7864ac3d318d7f97dc55ab17..b166a20ad86a383b373f0eba6430a0e0181c64ee 100644 --- a/server/src/main/java/org/red5/server/tomcat/TomcatApplicationContext.java +++ b/server/src/main/java/org/red5/server/tomcat/TomcatApplicationContext.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/TomcatApplicationLoader.java b/server/src/main/java/org/red5/server/tomcat/TomcatApplicationLoader.java index 95e1ae037582ba641e46f8d12ef5935cb924e3ed..375afbd98510ef12208fe36597205dc6739cc233 100644 --- a/server/src/main/java/org/red5/server/tomcat/TomcatApplicationLoader.java +++ b/server/src/main/java/org/red5/server/tomcat/TomcatApplicationLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/TomcatConnector.java b/server/src/main/java/org/red5/server/tomcat/TomcatConnector.java index a97a8ee8384bc349384fa69a3e80742477e0e578..da4edc212b2753ac35134531609c8181b0b7646f 100644 --- a/server/src/main/java/org/red5/server/tomcat/TomcatConnector.java +++ b/server/src/main/java/org/red5/server/tomcat/TomcatConnector.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/TomcatLoader.java b/server/src/main/java/org/red5/server/tomcat/TomcatLoader.java index f3df30fed474ebbfb29549af272bc661e98e34b5..cfaf47b74df711605fc88ae21487c1b18e16fe47 100644 --- a/server/src/main/java/org/red5/server/tomcat/TomcatLoader.java +++ b/server/src/main/java/org/red5/server/tomcat/TomcatLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/TomcatVHostLoader.java b/server/src/main/java/org/red5/server/tomcat/TomcatVHostLoader.java index f1ace5e67ec33c42f5553b30eea089c9fd6ce1b1..375a68e44d651afc0316235c89b6fae30891caf7 100644 --- a/server/src/main/java/org/red5/server/tomcat/TomcatVHostLoader.java +++ b/server/src/main/java/org/red5/server/tomcat/TomcatVHostLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/WarDeployer.java b/server/src/main/java/org/red5/server/tomcat/WarDeployer.java index e4d610b6dcb8b1dca643bfca8dca5214bab39784..173eea51aeb027c48410130b04b86886d325a5e2 100644 --- a/server/src/main/java/org/red5/server/tomcat/WarDeployer.java +++ b/server/src/main/java/org/red5/server/tomcat/WarDeployer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/rtmps/RTMPSLoader.java b/server/src/main/java/org/red5/server/tomcat/rtmps/RTMPSLoader.java index 518e7011129765d32ecc76336d634bf6bf76074b..279c2ab6ec741d0e2cfa88fd98b3241e4d0be68b 100644 --- a/server/src/main/java/org/red5/server/tomcat/rtmps/RTMPSLoader.java +++ b/server/src/main/java/org/red5/server/tomcat/rtmps/RTMPSLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/tomcat/rtmpt/RTMPTLoader.java b/server/src/main/java/org/red5/server/tomcat/rtmpt/RTMPTLoader.java index e47d00b1b1d735b9e8f9549e1b7f62fbc9175227..9e565386899be10f1ae4864c5fa867892ba21286 100644 --- a/server/src/main/java/org/red5/server/tomcat/rtmpt/RTMPTLoader.java +++ b/server/src/main/java/org/red5/server/tomcat/rtmpt/RTMPTLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Flash Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/util/LocalNetworkUtil.java b/server/src/main/java/org/red5/server/util/LocalNetworkUtil.java index 1a952526487d3d19069c20c16e0417b7cf3d484f..9e4222ed7a09169889f8e3b618b2f9f9d4191c8c 100644 --- a/server/src/main/java/org/red5/server/util/LocalNetworkUtil.java +++ b/server/src/main/java/org/red5/server/util/LocalNetworkUtil.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/util/ServerDetector.java b/server/src/main/java/org/red5/server/util/ServerDetector.java index 2be7c4c14ad92529734206bdeb415f14869a0b56..f9eba50f0667c35c510b5cbf779f7f6e7ddc203c 100644 --- a/server/src/main/java/org/red5/server/util/ServerDetector.java +++ b/server/src/main/java/org/red5/server/util/ServerDetector.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/server/war/WarLoaderServlet.java b/server/src/main/java/org/red5/server/war/WarLoaderServlet.java index e4e6bf769fdb8306dcd73f8a5b556089b13433a3..ecc5f540c2b2822ba02e30f6e5a087795c75d8a3 100644 --- a/server/src/main/java/org/red5/server/war/WarLoaderServlet.java +++ b/server/src/main/java/org/red5/server/war/WarLoaderServlet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/spring/ExtendedPropertyPlaceholderConfigurer.java b/server/src/main/java/org/red5/spring/ExtendedPropertyPlaceholderConfigurer.java index b95eb23031a943782937648e30dcc2735013ced5..c20589c0754bbe78a09a7715e08e5071038832e3 100644 --- a/server/src/main/java/org/red5/spring/ExtendedPropertyPlaceholderConfigurer.java +++ b/server/src/main/java/org/red5/spring/ExtendedPropertyPlaceholderConfigurer.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/server/src/main/java/org/red5/spring/InetAddressEditor.java b/server/src/main/java/org/red5/spring/InetAddressEditor.java index c8abddb8069d885f6204a66928f1b939dcc3652f..04ad49e583f1d0d19cff6d0331ceb2a90832c167 100644 --- a/server/src/main/java/org/red5/spring/InetAddressEditor.java +++ b/server/src/main/java/org/red5/spring/InetAddressEditor.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/service/pom.xml b/service/pom.xml index a53a7408e049b15e40f1c0b191e901430622ad08..28c49c5b32f92706c473ef69391495e893fd28ed 100644 --- a/service/pom.xml +++ b/service/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>org.red5</groupId> <artifactId>red5-parent</artifactId> - <version>1.3.24</version> + <version>1.3.25</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>red5-service</artifactId> diff --git a/service/src/main/java/org/red5/classloading/ChildFirstClassLoader.java b/service/src/main/java/org/red5/classloading/ChildFirstClassLoader.java index 2883cc4966ebdc7da3285a46e0f662947a5c1762..282c4c45af0d55e5f7c7a5037bda928208f01c52 100644 --- a/service/src/main/java/org/red5/classloading/ChildFirstClassLoader.java +++ b/service/src/main/java/org/red5/classloading/ChildFirstClassLoader.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/service/src/main/java/org/red5/classloading/ClassLoaderBuilder.java b/service/src/main/java/org/red5/classloading/ClassLoaderBuilder.java index c2dfd6a4f03536511355e2c9825d9176c12b955a..7bd85906827fc20723bf2924213aed91fe8b2f77 100644 --- a/service/src/main/java/org/red5/classloading/ClassLoaderBuilder.java +++ b/service/src/main/java/org/red5/classloading/ClassLoaderBuilder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/service/src/main/java/org/red5/daemon/EngineLauncher.java b/service/src/main/java/org/red5/daemon/EngineLauncher.java index 58b9b2771fcc1d6b523cb93718f72136653c1d41..5617c7d8c8c92acd86fe26218ced39cc3aaa1cc4 100644 --- a/service/src/main/java/org/red5/daemon/EngineLauncher.java +++ b/service/src/main/java/org/red5/daemon/EngineLauncher.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/service/src/main/java/org/red5/server/Bootstrap.java b/service/src/main/java/org/red5/server/Bootstrap.java index 91eeb22655054e0cc5d65216db12d4d92b2ecefb..890a2fd6a10b598a43fe98a979c47f89177edf8b 100644 --- a/service/src/main/java/org/red5/server/Bootstrap.java +++ b/service/src/main/java/org/red5/server/Bootstrap.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/service/src/main/java/org/red5/server/Shutdown.java b/service/src/main/java/org/red5/server/Shutdown.java index 4388b49fb18899fceaad3503481301d0fbc267b5..9d779fbfbb112ff66ce5f66ec63a67ffdecbbda6 100644 --- a/service/src/main/java/org/red5/server/Shutdown.java +++ b/service/src/main/java/org/red5/server/Shutdown.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/api/remoting/IRemotingConnection.java b/servlet/src/main/java/org/red5/server/api/remoting/IRemotingConnection.java index 86f3be5e1937a76946d893f477014a08d97f36c5..eca09d20b435bd9b1c914e9763460a65f9c23f9e 100644 --- a/servlet/src/main/java/org/red5/server/api/remoting/IRemotingConnection.java +++ b/servlet/src/main/java/org/red5/server/api/remoting/IRemotingConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/FlexMessagingService.java b/servlet/src/main/java/org/red5/server/net/FlexMessagingService.java index 80d7111c3d8e85a8c6468cd9cd8fb27d9154c1f8..c4c8ddf13f991103a6dfa555735999eb127e4730 100644 --- a/servlet/src/main/java/org/red5/server/net/FlexMessagingService.java +++ b/servlet/src/main/java/org/red5/server/net/FlexMessagingService.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/RemotingConnection.java b/servlet/src/main/java/org/red5/server/net/RemotingConnection.java index 21873b0cf41acba81ef42f9d1090ed3336736b67..5e7f6956d9bc4a21e46956195766c1b643f50351 100644 --- a/servlet/src/main/java/org/red5/server/net/RemotingConnection.java +++ b/servlet/src/main/java/org/red5/server/net/RemotingConnection.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingCodecFactory.java b/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingCodecFactory.java index c3e857712bf2ce55944fbd8a0eada543d34ba489..52999726fcd5e22623f22e5ee0086490f072719b 100644 --- a/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingCodecFactory.java +++ b/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingCodecFactory.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolDecoder.java b/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolDecoder.java index 18be20d9a661ec615ccb482928f42f1ab19f6be4..97561015aa3fe6e02bff048197cbc0989864eaf7 100644 --- a/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolDecoder.java +++ b/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolEncoder.java b/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolEncoder.java index 942aa3ed9de0bb421da42e9932661eacdc4b8ab4..db4920320b6b065a8a73e9103d0ee1f8d306581a 100644 --- a/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolEncoder.java +++ b/servlet/src/main/java/org/red5/server/net/remoting/codec/RemotingProtocolEncoder.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingCall.java b/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingCall.java index 867143f0ced41fea65e0a2e1fa18580776e61dec..a885b577b11201c248c5324f2788e9cb8350d0b3 100644 --- a/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingCall.java +++ b/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingCall.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingPacket.java b/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingPacket.java index 65db8c2d98ce57cc89ae79f4d1c2ec67d6774750..646f5a1e570fd6732e93fe784fd06ea818533233 100644 --- a/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingPacket.java +++ b/servlet/src/main/java/org/red5/server/net/remoting/message/RemotingPacket.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/servlet/AMFGatewayServlet.java b/servlet/src/main/java/org/red5/server/net/servlet/AMFGatewayServlet.java index c9c6a47aeedc4cea0c055ff21f570e202ba1c0da..50c16de361c68bf245f7f83f2c75196952214b85 100644 --- a/servlet/src/main/java/org/red5/server/net/servlet/AMFGatewayServlet.java +++ b/servlet/src/main/java/org/red5/server/net/servlet/AMFGatewayServlet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/servlet/AMFTunnelServlet.java b/servlet/src/main/java/org/red5/server/net/servlet/AMFTunnelServlet.java index d0a5fe895f6798712e5244d167317afb35b855a1..9368c7f5e5e616fc05cf6cc873b65065849442ad 100644 --- a/servlet/src/main/java/org/red5/server/net/servlet/AMFTunnelServlet.java +++ b/servlet/src/main/java/org/red5/server/net/servlet/AMFTunnelServlet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/servlet/src/main/java/org/red5/server/net/servlet/RedirectHTTPServlet.java b/servlet/src/main/java/org/red5/server/net/servlet/RedirectHTTPServlet.java index 0d282bf1e9085939b762b2a7b39ad20c30dcd05a..17aad3d97aa35da506a76f861045dd8ec82f690f 100644 --- a/servlet/src/main/java/org/red5/server/net/servlet/RedirectHTTPServlet.java +++ b/servlet/src/main/java/org/red5/server/net/servlet/RedirectHTTPServlet.java @@ -1,5 +1,5 @@ /* - * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2016 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version + * RED5 Open Source Media Server - https://github.com/Red5/ Copyright 2006-2023 by respective authors (see below). All rights reserved. Licensed under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless * required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the License.