source: EcnlProtoTool/trunk/openssl-1.1.0e/include/openssl/dtls1.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr
File size: 1.6 KB
Line 
1/*
2 * Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#ifndef HEADER_DTLS1_H
11# define HEADER_DTLS1_H
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17# define DTLS1_VERSION 0xFEFF
18# define DTLS1_2_VERSION 0xFEFD
19# define DTLS_MIN_VERSION DTLS1_VERSION
20# define DTLS_MAX_VERSION DTLS1_2_VERSION
21# define DTLS1_VERSION_MAJOR 0xFE
22
23# define DTLS1_BAD_VER 0x0100
24
25/* Special value for method supporting multiple versions */
26# define DTLS_ANY_VERSION 0x1FFFF
27
28/* lengths of messages */
29# define DTLS1_COOKIE_LENGTH 256
30
31# define DTLS1_RT_HEADER_LENGTH 13
32
33# define DTLS1_HM_HEADER_LENGTH 12
34
35# define DTLS1_HM_BAD_FRAGMENT -2
36# define DTLS1_HM_FRAGMENT_RETRY -3
37
38# define DTLS1_CCS_HEADER_LENGTH 1
39
40# ifdef DTLS1_AD_MISSING_HANDSHAKE_MESSAGE
41# define DTLS1_AL_HEADER_LENGTH 7
42# else
43# define DTLS1_AL_HEADER_LENGTH 2
44# endif
45
46
47/* Timeout multipliers (timeout slice is defined in apps/timeouts.h */
48# define DTLS1_TMO_READ_COUNT 2
49# define DTLS1_TMO_WRITE_COUNT 2
50
51# define DTLS1_TMO_ALERT_COUNT 12
52
53#ifdef __cplusplus
54}
55#endif
56#endif
Note: See TracBrowser for help on using the repository browser.