| 1 | /* |
| 2 | This file is part of the KDE libraries |
| 3 | SPDX-FileCopyrightText: 2001 Waldo Bastian <bastian@kde.org> |
| 4 | |
| 5 | SPDX-License-Identifier: LGPL-2.0-only |
| 6 | */ |
| 7 | |
| 8 | #ifndef _KIO_IOWORKER_DEFAULTS_H |
| 9 | #define _KIO_IOWORKER_DEFAULTS_H |
| 10 | |
| 11 | // TIMEOUT VALUES |
| 12 | static constexpr int DEFAULT_RESPONSE_TIMEOUT = 600; // 10 min. |
| 13 | static constexpr int DEFAULT_CONNECT_TIMEOUT = 20; // 20 secs. |
| 14 | static constexpr int DEFAULT_READ_TIMEOUT = 15; // 15 secs. |
| 15 | static constexpr int DEFAULT_PROXY_CONNECT_TIMEOUT = 10; // 10 secs. |
| 16 | static constexpr int MIN_TIMEOUT_VALUE = 2; // 2 secs. |
| 17 | |
| 18 | // MINIMUM SIZE FOR ABORTED DOWNLOAD TO BE KEPT |
| 19 | static constexpr int DEFAULT_MINIMUM_KEEP_SIZE = 5120; // 5 Kbs |
| 20 | |
| 21 | // NORMAL PORT DEFAULTS |
| 22 | static constexpr int DEFAULT_FTP_PORT = 21; |
| 23 | static constexpr int DEFAULT_SFTP_PORT = 22; |
| 24 | static constexpr int DEFAULT_SMTP_PORT = 25; |
| 25 | static constexpr int DEFAULT_HTTP_PORT = 80; |
| 26 | static constexpr int DEFAULT_POP3_PORT = 110; |
| 27 | static constexpr int DEFAULT_NNTP_PORT = 119; |
| 28 | static constexpr int DEFAULT_IMAP_PORT = 143; |
| 29 | static constexpr int DEFAULT_IMAP3_PORT = 220; |
| 30 | static constexpr int DEFAULT_LDAP_PORT = 389; |
| 31 | |
| 32 | // SECURE PORT DEFAULTS |
| 33 | static constexpr int DEFAULT_HTTPS_PORT = 443; |
| 34 | static constexpr int DEFAULT_NNTPS_PORT = 563; |
| 35 | static constexpr int DEFAULT_LDAPS_PORT = 389; |
| 36 | static constexpr int DEFAULT_IMAPS_PORT = 993; |
| 37 | static constexpr int DEFAULT_POP3S_PORT = 995; |
| 38 | |
| 39 | // OTHER GENERIC PORT DEFAULTS |
| 40 | static constexpr int DEFAULT_PROXY_PORT = 8080; |
| 41 | static constexpr int MAX_PORT_VALUE = 65535; |
| 42 | |
| 43 | #endif |
| 44 | |