ac8c4adc06
remove uC/OS-III eclipse project files Adding wolfSSL client example for uC/TCP-IP with WinPcap running on Win7 Cleaned up user_settings and client example code wolfSSL server example for uCOS-III/TCP-IP Fixed typo and formating Removed comments from user settings serial (UART) interface isn't available on all targets Updated to use PEM certs add XSNPRINTF snprintf define tx msg and size for clarity
36 lines
1019 B
C
36 lines
1019 B
C
/* client_wolfssl.h
|
|
*
|
|
* Copyright (C) 2018 wolfSSL Inc.
|
|
*
|
|
* This file is part of wolfSSL.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
*/
|
|
|
|
#ifndef __CLIENT_WOLFSSL_H__
|
|
#define __CLIENT_WOLFSSL_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int wolfssl_client_test(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* CLIENT_WOLFSSL_H */
|