/* config-RTX-TCP-FS.h * * Copyright (C) 2006-2015 wolfSSL Inc. * * This file is part of wolfSSL. (formerly known as CyaSSL) * * wolfSSL is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * wolfSSL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ /**** CyaSSL for KEIL-RL Configuration ****/ #define __CORTEX_M3__ #define CYASSL_MDK_ARM #define NO_WRITEV #define NO_CYASSL_DIR #define NO_MAIN_DRIVER #define CYASSL_DER_LOAD #define HAVE_NULL_CIPHER #define HAVE_KEIL_RTX #define CYASSL_CMSIS_RTOS #define CYASSL_KEIL_TCP_NET // <<< Use Configuration Wizard in Context Menu >>> // Build Target: Simple Client // Callee IP Address // Default: "192.168.1.100" #define CYASSL_CALLEE_IP "192.168.11.3" // Callee Port Number // Default: "443" #define CYASSL_CALLEE_PORT "443" // HTTP GET Option <0=> HTTP Get <1=> SSL/TLS Message #define MDK_CONF_HTTP_GET 0 #if MDK_CONF_HTTP_GET == 0 #define CYASSL_HTTP_GET "-g" #define CYASSL_HTTP_GET_COUNT 1 #elif MDK_CONF_HTTP_GET == 1 #define CYASSL_HTTP_GET "" #define CYASSL_HTTP_GET_COUNT 0 #endif // SSL/TLS Version <0=> SSL3 <1=> TLS 1.0 <2=> TLS 1.1 <3=> TLS 1.2 #define MDK_CONF_SSL_VERSION 3 #if MDK_CONF_SSL_VERSION == 0 #define CYASSL_SSL_VER "0" #elif MDK_CONF_SSL_VERSION == 1 #define CYASSL_SSL_VER "1" #elif MDK_CONF_SSL_VERSION == 2 #define CYASSL_SSL_VER "2" #elif MDK_CONF_SSL_VERSION == 3 #define CYASSL_SSL_VER "3" #endif // // <<< end of configuration section >>>