checksum need a libradius_init() symbol

This commit is contained in:
Andreas Steffen
2012-04-05 16:52:37 +02:00
parent e90e106117
commit 367e1e22b8
2 changed files with 13 additions and 0 deletions
+8
View File
@@ -66,6 +66,14 @@ struct private_radius_message_t {
rmsg_t *msg;
};
/**
* Described in header.
*/
void libradius_init(void)
{
/* empty */
}
ENUM_BEGIN(radius_message_code_names, RMC_ACCESS_REQUEST, RMC_ACCOUNTING_RESPONSE,
"Access-Request",
"Access-Accept",
+5
View File
@@ -278,6 +278,11 @@ struct radius_message_t {
void (*destroy)(radius_message_t *this);
};
/**
* Dummy libradius initialization function needed for integrity test
*/
void libradius_init(void);
/**
* Create an empty RADIUS message.
*