added dummy libtls_init() function needed for integrity testing
This commit is contained in:
@@ -192,6 +192,14 @@ struct private_tls_t {
|
|||||||
size_t headpos;
|
size_t headpos;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Described in header.
|
||||||
|
*/
|
||||||
|
void libtls_init(void)
|
||||||
|
{
|
||||||
|
/* empty */
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(tls_t, process, status_t,
|
METHOD(tls_t, process, status_t,
|
||||||
private_tls_t *this, void *buf, size_t buflen)
|
private_tls_t *this, void *buf, size_t buflen)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -227,6 +227,11 @@ struct tls_t {
|
|||||||
void (*destroy)(tls_t *this);
|
void (*destroy)(tls_t *this);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dummy libtls initialization function needed for integrity test
|
||||||
|
*/
|
||||||
|
void libtls_init(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a tls instance.
|
* Create a tls instance.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user