MbedTLS: Move more code to appropriate section
This commit is contained in:
parent
3ba0923c0e
commit
c1007a93d5
1 changed files with 7 additions and 7 deletions
|
@ -72,6 +72,13 @@ static rb_mbedtls_cfg_context *rb_mbedtls_cfg = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
struct ssl_connect
|
||||||
|
{
|
||||||
|
CNCB *callback;
|
||||||
|
void *data;
|
||||||
|
int timeout;
|
||||||
|
};
|
||||||
|
|
||||||
static void rb_ssl_connect_realcb(rb_fde_t *, int, struct ssl_connect *);
|
static void rb_ssl_connect_realcb(rb_fde_t *, int, struct ssl_connect *);
|
||||||
|
|
||||||
static int rb_sock_net_recv(void *, unsigned char *, size_t);
|
static int rb_sock_net_recv(void *, unsigned char *, size_t);
|
||||||
|
@ -578,13 +585,6 @@ rb_ssl_write(rb_fde_t *const F, const void *const buf, size_t count)
|
||||||
* Mostly copied from the OpenSSL backend, with some optimisations and complete const-correctness
|
* Mostly copied from the OpenSSL backend, with some optimisations and complete const-correctness
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct ssl_connect
|
|
||||||
{
|
|
||||||
CNCB *callback;
|
|
||||||
void *data;
|
|
||||||
int timeout;
|
|
||||||
};
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
rb_ssl_connect_realcb(rb_fde_t *const F, int status, struct ssl_connect *const sconn)
|
rb_ssl_connect_realcb(rb_fde_t *const F, int status, struct ssl_connect *const sconn)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue