Mercurial > hg > orthanc
comparison OrthancFramework/Sources/HttpServer/HttpServer.cpp @ 4892:6eff25f70121 openssl-3.x
integration mainline->openssl-3.x
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 20 Feb 2022 11:14:34 +0100 |
parents | 2e71a08eea15 43e613a7756b |
children | 859f3668c181 |
comparison
equal
deleted
inserted
replaced
4869:e1944053cbef | 4892:6eff25f70121 |
---|---|
1 /** | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | 2 * Orthanc - A Lightweight, RESTful DICOM Store |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
4 * Department, University Hospital of Liege, Belgium | 4 * Department, University Hospital of Liege, Belgium |
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium | 5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
6 * Copyright (C) 2021-2021 Sebastien Jodogne, ICTEAM UCLouvain, Belgium | 6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
7 * | 7 * |
8 * This program is free software: you can redistribute it and/or | 8 * This program is free software: you can redistribute it and/or |
9 * modify it under the terms of the GNU Lesser General Public License | 9 * modify it under the terms of the GNU Lesser General Public License |
10 * as published by the Free Software Foundation, either version 3 of | 10 * as published by the Free Software Foundation, either version 3 of |
11 * the License, or (at your option) any later version. | 11 * the License, or (at your option) any later version. |
73 #if ORTHANC_ENABLE_SSL == 1 | 73 #if ORTHANC_ENABLE_SSL == 1 |
74 # include <openssl/opensslv.h> | 74 # include <openssl/opensslv.h> |
75 # include <openssl/err.h> | 75 # include <openssl/err.h> |
76 | 76 |
77 # if OPENSSL_VERSION_NUMBER < 0x30000000L | 77 # if OPENSSL_VERSION_NUMBER < 0x30000000L |
78 # warning You are linking Orthanc against OpenSSL 1.x, whose license is incompatible with the GPLv3+ used by Orthanc. Please update to OpenSSL 3.x, that uses the Apache 2 license. | 78 # warning You are linking Orthanc against OpenSSL 1.x, whose license is incompatible with the GPLv3+ used by Orthanc >= 1.10.0. Please update to OpenSSL 3.x, that uses the Apache 2 license. |
79 # endif | 79 # endif |
80 | 80 |
81 #endif | 81 #endif |
82 | 82 |
83 #define ORTHANC_REALM "Orthanc Secure Area" | 83 #define ORTHANC_REALM "Orthanc Secure Area" |