1// Copyright (C) 2020 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7/**
8 @page libhttp libkea-http - Kea HTTP Library
9
10@section httpMTConsiderations Multi-Threading Consideration for HTTP Library
11
12By default this library is not thread safe, for instance HTTP listeners
13and HTTP messages are not thread safe. Exceptions are:
14
15 - HTTP client is Kea thread safe (i.e. is thread safe when the
16  multi-threading mode is true).
17
18 - date time is thread safe (mainly because its encapsulated POSIX time
19  is private and read-only, or because all methods are instance const methods
20  or class methods).
21
22 - URL is thread safe (all public methods are const methods).
23
24*/
25