1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: ssl_Types.h 4 Copyright (C)2009 Nintendo Co., Ltd. All rights reserved. 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 $Rev: 18106 $ 11 *--------------------------------------------------------------------------- 12 13 14 */ 15 16 #ifndef NN_SSL_SSL_TYPES_H_ 17 #define NN_SSL_SSL_TYPES_H_ 18 19 #include <nn/net/compatible/nssl.h> 20 21 /* Please see man pages for details 22 23 24 */ 25 26 /* Please see man pages for details 27 28 */ 29 typedef NSSLCertId NnSslCertId; 30 31 /* Please see man pages for details 32 33 */ 34 typedef NSSLCRLId NnSslCrlId; 35 36 /* 37 38 */ 39 40 #ifdef __cplusplus 41 42 namespace nn { 43 namespace ssl { 44 45 /* Please see man pages for details 46 47 */ 48 typedef NnSslCertId CertId; 49 50 /* Please see man pages for details 51 52 */ 53 typedef NnSslCrlId CrlId; 54 55 /* Please see man pages for details 56 57 */ 58 typedef NSSLId ConnectionHandle; 59 60 /* Please see man pages for details 61 62 */ 63 typedef NSSLCertStoreId CertStoreId; 64 65 /* Please see man pages for details 66 67 */ 68 typedef NSSLCRLStoreId CrlStoreId; 69 70 71 } // end of namespace ssl 72 } // end of namespace nn 73 74 #endif /*__cplusplus*/ 75 76 77 #endif /* NN_NHTTP_NHTTP_TYPES_H_ */ 78