for tcc compiler

FossilOrigin-Name: e92658b29c67652cb6c26acf4a9856bcb00373b326250547d496dfec35b6675f
This commit is contained in:
7u83@mail.ru 2018-03-01 23:13:26 +00:00
parent 762ff8bce5
commit c3d07a30e9
1 changed files with 13 additions and 0 deletions

13
src/cw/dtls_common.h Normal file
View File

@ -0,0 +1,13 @@
#include <stdint.h>
#include "conn.h"
struct dtls_ssl_cert
{
int size;
int type;
uint8_t * data;
};
extern int dtls_bio_read(struct conn *conn, char *out, int maxlen);
extern int dtls_bio_write(struct conn * conn, const char *data, int len);