2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2016-05-18 02:18:30 +08:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2005-04-27 00:02:40 +08:00
|
|
|
*
|
2018-12-06 20:00:26 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:18:30 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2005-04-27 00:02:40 +08:00
|
|
|
*/
|
|
|
|
|
2019-09-28 06:45:57 +08:00
|
|
|
#ifndef OSSL_APPS_TIMEOUTS_H
|
|
|
|
# define OSSL_APPS_TIMEOUTS_H
|
2005-04-27 00:02:40 +08:00
|
|
|
|
|
|
|
/* numbers in us */
|
2015-01-22 11:40:55 +08:00
|
|
|
# define DGRAM_RCV_TIMEOUT 250000
|
|
|
|
# define DGRAM_SND_TIMEOUT 250000
|
2005-04-27 00:02:40 +08:00
|
|
|
|
2019-09-28 06:45:57 +08:00
|
|
|
#endif /* ! OSSL_APPS_TIMEOUTS_H */
|