2015-03-20 11:28:40 -04:00
|
|
|
/*
|
2018-09-13 15:18:07 -04:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2006-07-29 15:10:21 -04:00
|
|
|
*
|
2018-09-13 15:18:07 -04:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
|
* 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
|
2006-07-29 15:10:21 -04:00
|
|
|
*/
|
|
|
|
|
|
2020-03-17 17:27:57 -04:00
|
|
|
#ifndef OSSL_APPS_TIMEOUTS_H
|
|
|
|
|
# define OSSL_APPS_TIMEOUTS_H
|
2006-07-29 15:10:21 -04:00
|
|
|
|
|
|
|
|
/* numbers in us */
|
2015-03-20 11:28:40 -04:00
|
|
|
# define DGRAM_RCV_TIMEOUT 250000
|
|
|
|
|
# define DGRAM_SND_TIMEOUT 250000
|
2006-07-29 15:10:21 -04:00
|
|
|
|
2020-03-17 17:27:57 -04:00
|
|
|
#endif /* ! OSSL_APPS_TIMEOUTS_H */
|