mirror of
https://github.com/joel16/uofw.git
synced 2024-11-27 05:20:23 +00:00
27 lines
692 B
C
27 lines
692 B
C
/* Copyright (C) 2011 - 2016 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
/**
|
|
* uofw/include/net/lib_ssl.h
|
|
*
|
|
* This library is needed to perform HTTPS connections.
|
|
*/
|
|
|
|
#ifndef LIB_SSL_H
|
|
#define LIB_SSL_H
|
|
|
|
#define SCE_SSL_LEAST_STACK_SIZE (1*1024) /* 1KiB */
|
|
|
|
/* lib_ssl specific error codes. */
|
|
|
|
#define SCE_SSL_ERROR_BEFORE_INIT 0x80435001
|
|
#define SCE_SSL_ERROR_ALREADY_INITED 0x80435020
|
|
#define SCE_SSL_ERROR_OUT_OF_MEMORY 0x80435022
|
|
#define SCE_SSL_ERROR_NOT_FOUND 0x80435025
|
|
#define SCE_SSL_ERROR_INVALID_VALUE 0x804351FE
|
|
#define SCE_SSL_ERROR_INVALID_FORMAT 0x80435108
|
|
|
|
#endif /* LIB_SSL_H */
|
|
|