added dummy libtls_init() function needed for integrity testing

This commit is contained in:
Andreas Steffen 2011-11-08 20:27:17 +01:00
parent 856baca23e
commit e7cb8f9b37
2 changed files with 13 additions and 0 deletions

View File

@ -192,6 +192,14 @@ struct private_tls_t {
size_t headpos;
};
/**
* Described in header.
*/
void libtls_init(void)
{
/* empty */
}
METHOD(tls_t, process, status_t,
private_tls_t *this, void *buf, size_t buflen)
{

View File

@ -227,6 +227,11 @@ struct tls_t {
void (*destroy)(tls_t *this);
};
/**
* Dummy libtls initialization function needed for integrity test
*/
void libtls_init(void);
/**
* Create a tls instance.
*