wolfSSL SSL/TLS library, support up to TLS1.3

Dependents:   CyaSSL-Twitter-OAuth4Tw Example-client-tls-cert TwitterReader TweetTest ... more

Committer:
wolfSSL
Date:
Fri Jun 26 00:39:20 2015 +0000
Revision:
0:d92f9d21154c
wolfSSL 3.6.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 0:d92f9d21154c 1 /* sniffer_error.h
wolfSSL 0:d92f9d21154c 2 *
wolfSSL 0:d92f9d21154c 3 * Copyright (C) 2006-2015 wolfSSL Inc.
wolfSSL 0:d92f9d21154c 4 *
wolfSSL 0:d92f9d21154c 5 * This file is part of wolfSSL. (formerly known as CyaSSL)
wolfSSL 0:d92f9d21154c 6 *
wolfSSL 0:d92f9d21154c 7 * wolfSSL is free software; you can redistribute it and/or modify
wolfSSL 0:d92f9d21154c 8 * it under the terms of the GNU General Public License as published by
wolfSSL 0:d92f9d21154c 9 * the Free Software Foundation; either version 2 of the License, or
wolfSSL 0:d92f9d21154c 10 * (at your option) any later version.
wolfSSL 0:d92f9d21154c 11 *
wolfSSL 0:d92f9d21154c 12 * wolfSSL is distributed in the hope that it will be useful,
wolfSSL 0:d92f9d21154c 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wolfSSL 0:d92f9d21154c 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wolfSSL 0:d92f9d21154c 15 * GNU General Public License for more details.
wolfSSL 0:d92f9d21154c 16 *
wolfSSL 0:d92f9d21154c 17 * You should have received a copy of the GNU General Public License
wolfSSL 0:d92f9d21154c 18 * along with this program; if not, write to the Free Software
wolfSSL 0:d92f9d21154c 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
wolfSSL 0:d92f9d21154c 20 */
wolfSSL 0:d92f9d21154c 21
wolfSSL 0:d92f9d21154c 22
wolfSSL 0:d92f9d21154c 23 #ifndef WOLFSSL_SNIFFER_ERROR_H
wolfSSL 0:d92f9d21154c 24 #define WOLFSSL_SNIFFER_ERROR_H
wolfSSL 0:d92f9d21154c 25
wolfSSL 0:d92f9d21154c 26 /* need to have errors as #defines since .rc files can't handle enums */
wolfSSL 0:d92f9d21154c 27 /* need to start at 1 and go in order for same reason */
wolfSSL 0:d92f9d21154c 28
wolfSSL 0:d92f9d21154c 29 #define MEMORY_STR 1
wolfSSL 0:d92f9d21154c 30 #define NEW_SERVER_STR 2
wolfSSL 0:d92f9d21154c 31 #define IP_CHECK_STR 3
wolfSSL 0:d92f9d21154c 32 #define SERVER_NOT_REG_STR 4
wolfSSL 0:d92f9d21154c 33 #define TCP_CHECK_STR 5
wolfSSL 0:d92f9d21154c 34 #define SERVER_PORT_NOT_REG_STR 6
wolfSSL 0:d92f9d21154c 35 #define RSA_DECRYPT_STR 7
wolfSSL 0:d92f9d21154c 36 #define RSA_DECODE_STR 8
wolfSSL 0:d92f9d21154c 37 #define BAD_CIPHER_SPEC_STR 9
wolfSSL 0:d92f9d21154c 38 #define SERVER_HELLO_INPUT_STR 10
wolfSSL 0:d92f9d21154c 39
wolfSSL 0:d92f9d21154c 40 #define BAD_SESSION_RESUME_STR 11
wolfSSL 0:d92f9d21154c 41 #define SERVER_DID_RESUMPTION_STR 12
wolfSSL 0:d92f9d21154c 42 #define CLIENT_HELLO_INPUT_STR 13
wolfSSL 0:d92f9d21154c 43 #define CLIENT_RESUME_TRY_STR 14
wolfSSL 0:d92f9d21154c 44 #define HANDSHAKE_INPUT_STR 15
wolfSSL 0:d92f9d21154c 45 #define GOT_HELLO_VERIFY_STR 16
wolfSSL 0:d92f9d21154c 46 #define GOT_SERVER_HELLO_STR 17
wolfSSL 0:d92f9d21154c 47 #define GOT_CERT_REQ_STR 18
wolfSSL 0:d92f9d21154c 48 #define GOT_SERVER_KEY_EX_STR 19
wolfSSL 0:d92f9d21154c 49 #define GOT_CERT_STR 20
wolfSSL 0:d92f9d21154c 50
wolfSSL 0:d92f9d21154c 51 #define GOT_SERVER_HELLO_DONE_STR 21
wolfSSL 0:d92f9d21154c 52 #define GOT_FINISHED_STR 22
wolfSSL 0:d92f9d21154c 53 #define GOT_CLIENT_HELLO_STR 23
wolfSSL 0:d92f9d21154c 54 #define GOT_CLIENT_KEY_EX_STR 24
wolfSSL 0:d92f9d21154c 55 #define GOT_CERT_VER_STR 25
wolfSSL 0:d92f9d21154c 56 #define GOT_UNKNOWN_HANDSHAKE_STR 26
wolfSSL 0:d92f9d21154c 57 #define NEW_SESSION_STR 27
wolfSSL 0:d92f9d21154c 58 #define BAD_NEW_SSL_STR 28
wolfSSL 0:d92f9d21154c 59 #define GOT_PACKET_STR 29
wolfSSL 0:d92f9d21154c 60 #define NO_DATA_STR 30
wolfSSL 0:d92f9d21154c 61
wolfSSL 0:d92f9d21154c 62 #define BAD_SESSION_STR 31
wolfSSL 0:d92f9d21154c 63 #define GOT_OLD_CLIENT_HELLO_STR 32
wolfSSL 0:d92f9d21154c 64 #define OLD_CLIENT_INPUT_STR 33
wolfSSL 0:d92f9d21154c 65 #define OLD_CLIENT_OK_STR 34
wolfSSL 0:d92f9d21154c 66 #define BAD_OLD_CLIENT_STR 35
wolfSSL 0:d92f9d21154c 67 #define BAD_RECORD_HDR_STR 36
wolfSSL 0:d92f9d21154c 68 #define RECORD_INPUT_STR 37
wolfSSL 0:d92f9d21154c 69 #define GOT_HANDSHAKE_STR 38
wolfSSL 0:d92f9d21154c 70 #define BAD_HANDSHAKE_STR 39
wolfSSL 0:d92f9d21154c 71 #define GOT_CHANGE_CIPHER_STR 40
wolfSSL 0:d92f9d21154c 72
wolfSSL 0:d92f9d21154c 73 #define GOT_APP_DATA_STR 41
wolfSSL 0:d92f9d21154c 74 #define BAD_APP_DATA_STR 42
wolfSSL 0:d92f9d21154c 75 #define GOT_ALERT_STR 43
wolfSSL 0:d92f9d21154c 76 #define ANOTHER_MSG_STR 44
wolfSSL 0:d92f9d21154c 77 #define REMOVE_SESSION_STR 45
wolfSSL 0:d92f9d21154c 78 #define KEY_FILE_STR 46
wolfSSL 0:d92f9d21154c 79 #define BAD_IPVER_STR 47
wolfSSL 0:d92f9d21154c 80 #define BAD_PROTO_STR 48
wolfSSL 0:d92f9d21154c 81 #define PACKET_HDR_SHORT_STR 49
wolfSSL 0:d92f9d21154c 82 #define GOT_UNKNOWN_RECORD_STR 50
wolfSSL 0:d92f9d21154c 83
wolfSSL 0:d92f9d21154c 84 #define BAD_TRACE_FILE_STR 51
wolfSSL 0:d92f9d21154c 85 #define FATAL_ERROR_STR 52
wolfSSL 0:d92f9d21154c 86 #define PARTIAL_INPUT_STR 53
wolfSSL 0:d92f9d21154c 87 #define BUFFER_ERROR_STR 54
wolfSSL 0:d92f9d21154c 88 #define PARTIAL_ADD_STR 55
wolfSSL 0:d92f9d21154c 89 #define DUPLICATE_STR 56
wolfSSL 0:d92f9d21154c 90 #define OUT_OF_ORDER_STR 57
wolfSSL 0:d92f9d21154c 91 #define OVERLAP_DUPLICATE_STR 58
wolfSSL 0:d92f9d21154c 92 #define OVERLAP_REASSEMBLY_BEGIN_STR 59
wolfSSL 0:d92f9d21154c 93 #define OVERLAP_REASSEMBLY_END_STR 60
wolfSSL 0:d92f9d21154c 94
wolfSSL 0:d92f9d21154c 95 #define MISSED_CLIENT_HELLO_STR 61
wolfSSL 0:d92f9d21154c 96 #define GOT_HELLO_REQUEST_STR 62
wolfSSL 0:d92f9d21154c 97 #define GOT_SESSION_TICKET_STR 63
wolfSSL 0:d92f9d21154c 98 #define BAD_INPUT_STR 64
wolfSSL 0:d92f9d21154c 99 #define BAD_DECRYPT_TYPE 65
wolfSSL 0:d92f9d21154c 100 #define BAD_FINISHED_MSG 66
wolfSSL 0:d92f9d21154c 101 #define BAD_COMPRESSION_STR 67
wolfSSL 0:d92f9d21154c 102 #define BAD_DERIVE_STR 68
wolfSSL 0:d92f9d21154c 103 #define ACK_MISSED_STR 69
wolfSSL 0:d92f9d21154c 104 #define BAD_DECRYPT 70
wolfSSL 0:d92f9d21154c 105
wolfSSL 0:d92f9d21154c 106 #define DECRYPT_KEYS_NOT_SETUP 71
wolfSSL 0:d92f9d21154c 107 #define CLIENT_HELLO_LATE_KEY_STR 72
wolfSSL 0:d92f9d21154c 108 #define GOT_CERT_STATUS_STR 73
wolfSSL 0:d92f9d21154c 109 #define RSA_KEY_MISSING_STR 74
wolfSSL 0:d92f9d21154c 110 /* !!!! also add to msgTable in sniffer.c and .rc file !!!! */
wolfSSL 0:d92f9d21154c 111
wolfSSL 0:d92f9d21154c 112
wolfSSL 0:d92f9d21154c 113 #endif /* wolfSSL_SNIFFER_ERROR_H */
wolfSSL 0:d92f9d21154c 114
wolfSSL 0:d92f9d21154c 115