diff --git a/source/WorldServer/Web/HTTPSClient.cpp b/source/WorldServer/Web/HTTPSClient.cpp index ae4cca1..bdb594e 100644 --- a/source/WorldServer/Web/HTTPSClient.cpp +++ b/source/WorldServer/Web/HTTPSClient.cpp @@ -1,21 +1,21 @@ -/* -EQ2Emu: Everquest II Server Emulator -Copyright (C) 2007-2025 EQ2Emu Development Team (https://www.eq2emu.com) +/* + EQ2Emulator: Everquest II Server Emulator + Copyright (C) 2005 - 2026 EQ2EMulator Development Team (http://www.eq2emu.com formerly http://www.eq2emulator.net) -This file is part of EQ2Emu. + This file is part of EQ2Emulator. -EQ2Emu is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. + EQ2Emulator is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. -EQ2Emu is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + EQ2Emulator is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with EQ2Emu. If not, see . + You should have received a copy of the GNU General Public License + along with EQ2Emulator. If not, see . */ #include "HTTPSClient.h" diff --git a/source/WorldServer/Web/HTTPSClient.h b/source/WorldServer/Web/HTTPSClient.h index 00712d5..8c5bb2e 100644 --- a/source/WorldServer/Web/HTTPSClient.h +++ b/source/WorldServer/Web/HTTPSClient.h @@ -1,21 +1,21 @@ -/* -EQ2Emu: Everquest II Server Emulator -Copyright (C) 2007-2025 EQ2Emu Development Team (https://www.eq2emu.com) +/* + EQ2Emulator: Everquest II Server Emulator + Copyright (C) 2005 - 2026 EQ2EMulator Development Team (http://www.eq2emu.com formerly http://www.eq2emulator.net) -This file is part of EQ2Emu. + This file is part of EQ2Emulator. -EQ2Emu is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. + EQ2Emulator is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. -EQ2Emu is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + EQ2Emulator is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with EQ2Emu. If not, see . + You should have received a copy of the GNU General Public License + along with EQ2Emulator. If not, see . */ #ifndef HTTPSCLIENT_H @@ -28,18 +28,14 @@ along with EQ2Emu. If not, see . #include #include #include +#include +#include // for SSL_set_tlsext_host_name namespace ssl = boost::asio::ssl; namespace asio = boost::asio; namespace beast = boost::beast; namespace http = beast::http; -// at the top of your .cpp: -#include -#include // for SSL_set_tlsext_host_name - -// … - struct PooledStream { boost::asio::ssl::stream stream; boost::asio::ip::tcp::resolver resolver; diff --git a/source/WorldServer/zoneserver.cpp b/source/WorldServer/zoneserver.cpp index 46c4f15..27e50b6 100644 --- a/source/WorldServer/zoneserver.cpp +++ b/source/WorldServer/zoneserver.cpp @@ -1,6 +1,6 @@ /* EQ2Emulator: Everquest II Server Emulator - Copyright (C) 2005 - 2025 EQ2EMulator Development Team (http://www.eq2emu.com formerly http://www.eq2emulator.net) + Copyright (C) 2005 - 2026 EQ2EMulator Development Team (http://www.eq2emu.com formerly http://www.eq2emulator.net) This file is part of EQ2Emulator. diff --git a/source/common/Web/WebServer.cpp b/source/common/Web/WebServer.cpp index b563db4..f24769e 100644 --- a/source/common/Web/WebServer.cpp +++ b/source/common/Web/WebServer.cpp @@ -1,3 +1,23 @@ +/* + EQ2Emulator: Everquest II Server Emulator + Copyright (C) 2005 - 2026 EQ2EMulator Development Team (http://www.eq2emu.com formerly http://www.eq2emulator.net) + + This file is part of EQ2Emulator. + + EQ2Emulator is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + EQ2Emulator is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with EQ2Emulator. If not, see . +*/ + #include "WebServer.h" #include #include