cyassl re-port with cellular comms, PSK test

Dependencies:   VodafoneUSBModem_bleedingedge2 mbed-rtos mbed-src

Committer:
ashleymills
Date:
Fri Apr 26 16:59:36 2013 +0000
Revision:
1:b211d97b0068
Parent:
0:e979170e02e7
nothing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 0:e979170e02e7 1 /* visibility.h
ashleymills 0:e979170e02e7 2 *
ashleymills 0:e979170e02e7 3 * Copyright (C) 2006-2012 Sawtooth Consulting Ltd.
ashleymills 0:e979170e02e7 4 *
ashleymills 0:e979170e02e7 5 * This file is part of CyaSSL.
ashleymills 0:e979170e02e7 6 *
ashleymills 0:e979170e02e7 7 * CyaSSL is free software; you can redistribute it and/or modify
ashleymills 0:e979170e02e7 8 * it under the terms of the GNU General Public License as published by
ashleymills 0:e979170e02e7 9 * the Free Software Foundation; either version 2 of the License, or
ashleymills 0:e979170e02e7 10 * (at your option) any later version.
ashleymills 0:e979170e02e7 11 *
ashleymills 0:e979170e02e7 12 * CyaSSL is distributed in the hope that it will be useful,
ashleymills 0:e979170e02e7 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ashleymills 0:e979170e02e7 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ashleymills 0:e979170e02e7 15 * GNU General Public License for more details.
ashleymills 0:e979170e02e7 16 *
ashleymills 0:e979170e02e7 17 * You should have received a copy of the GNU General Public License
ashleymills 0:e979170e02e7 18 * along with this program; if not, write to the Free Software
ashleymills 0:e979170e02e7 19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
ashleymills 0:e979170e02e7 20 */
ashleymills 0:e979170e02e7 21
ashleymills 0:e979170e02e7 22 /* Visibility control macros */
ashleymills 0:e979170e02e7 23
ashleymills 0:e979170e02e7 24
ashleymills 0:e979170e02e7 25 #ifndef CTAO_CRYPT_VISIBILITY_H
ashleymills 0:e979170e02e7 26 #define CTAO_CRYPT_VISIBILITY_H
ashleymills 0:e979170e02e7 27
ashleymills 0:e979170e02e7 28
ashleymills 0:e979170e02e7 29 /* CYASSL_API is used for the public API symbols.
ashleymills 0:e979170e02e7 30 It either imports or exports (or does nothing for static builds)
ashleymills 0:e979170e02e7 31
ashleymills 0:e979170e02e7 32 CYASSL_LOCAL is used for non-API symbols (private).
ashleymills 0:e979170e02e7 33 */
ashleymills 0:e979170e02e7 34
ashleymills 0:e979170e02e7 35 #if defined(BUILDING_CYASSL)
ashleymills 0:e979170e02e7 36 #if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY
ashleymills 0:e979170e02e7 37 #define CYASSL_API __attribute__ ((visibility("default")))
ashleymills 0:e979170e02e7 38 #define CYASSL_LOCAL __attribute__ ((visibility("hidden")))
ashleymills 0:e979170e02e7 39 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
ashleymills 0:e979170e02e7 40 #define CYASSL_API __global
ashleymills 0:e979170e02e7 41 #define CYASSL_LOCAL __hidden
ashleymills 0:e979170e02e7 42 #elif defined(_MSC_VER)
ashleymills 0:e979170e02e7 43 #ifdef CYASSL_DLL
ashleymills 0:e979170e02e7 44 #define CYASSL_API extern __declspec(dllexport)
ashleymills 0:e979170e02e7 45 #else
ashleymills 0:e979170e02e7 46 #define CYASSL_API
ashleymills 0:e979170e02e7 47 #endif
ashleymills 0:e979170e02e7 48 #define CYASSL_LOCAL
ashleymills 0:e979170e02e7 49 #else
ashleymills 0:e979170e02e7 50 #define CYASSL_API
ashleymills 0:e979170e02e7 51 #define CYASSL_LOCAL
ashleymills 0:e979170e02e7 52 #endif /* HAVE_VISIBILITY */
ashleymills 0:e979170e02e7 53 #else /* BUILDING_CYASSL */
ashleymills 0:e979170e02e7 54 #if defined(_MSC_VER)
ashleymills 0:e979170e02e7 55 #ifdef CYASSL_DLL
ashleymills 0:e979170e02e7 56 #define CYASSL_API extern __declspec(dllimport)
ashleymills 0:e979170e02e7 57 #else
ashleymills 0:e979170e02e7 58 #define CYASSL_API
ashleymills 0:e979170e02e7 59 #endif
ashleymills 0:e979170e02e7 60 #define CYASSL_LOCAL
ashleymills 0:e979170e02e7 61 #else
ashleymills 0:e979170e02e7 62 #define CYASSL_API
ashleymills 0:e979170e02e7 63 #define CYASSL_LOCAL
ashleymills 0:e979170e02e7 64 #endif
ashleymills 0:e979170e02e7 65 #endif /* BUILDING_CYASSL */
ashleymills 0:e979170e02e7 66
ashleymills 0:e979170e02e7 67
ashleymills 0:e979170e02e7 68 #endif /* CTAO_CRYPT_VISIBILITY_H */
ashleymills 0:e979170e02e7 69