You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdint.h>
|
|
#include "conn.h"
|
|
struct dtls_ssl_cert
|
|
{
|
|
int size;
|
|
int type;
|
|
uint8_t * data;
|
|
};
|
|
|
|
extern int dtls_bio_read(struct cw_Conn *conn, char *out, int maxlen);
|
|
extern int dtls_bio_write(struct cw_Conn * conn, const char *data, int len);
|
|
|
|
|
|
|