Use standard unsigned integer types
This commit is contained in:
@@ -145,7 +145,7 @@ tnc_ifmap_listener_t *tnc_ifmap_listener_create(bool reload)
|
||||
{
|
||||
private_tnc_ifmap_listener_t *this;
|
||||
job_t *job;
|
||||
u_int32_t reschedule;
|
||||
uint32_t reschedule;
|
||||
|
||||
INIT(this,
|
||||
.public = {
|
||||
|
||||
@@ -40,7 +40,7 @@ struct private_tnc_ifmap_renew_session_job_t {
|
||||
/**
|
||||
* Reschedule time interval in seconds
|
||||
*/
|
||||
u_int32_t reschedule;
|
||||
uint32_t reschedule;
|
||||
};
|
||||
|
||||
METHOD(job_t, destroy, void,
|
||||
@@ -83,7 +83,7 @@ METHOD(job_t, get_priority, job_priority_t,
|
||||
* Described in header
|
||||
*/
|
||||
tnc_ifmap_renew_session_job_t *tnc_ifmap_renew_session_job_create(
|
||||
tnc_ifmap_soap_t *ifmap, u_int32_t reschedule)
|
||||
tnc_ifmap_soap_t *ifmap, uint32_t reschedule)
|
||||
{
|
||||
private_tnc_ifmap_renew_session_job_t *this;
|
||||
|
||||
|
||||
@@ -46,6 +46,6 @@ struct tnc_ifmap_renew_session_job_t {
|
||||
* @param reschedule reschedule time in seconds
|
||||
*/
|
||||
tnc_ifmap_renew_session_job_t *tnc_ifmap_renew_session_job_create(
|
||||
tnc_ifmap_soap_t *ifmap, u_int32_t reschedule);
|
||||
tnc_ifmap_soap_t *ifmap, uint32_t reschedule);
|
||||
|
||||
#endif /** TNC_IFMAP_RENEW_SESSION_JOB_H_ @}*/
|
||||
|
||||
@@ -186,7 +186,7 @@ METHOD(tnc_ifmap_soap_t, purgePublisher, bool,
|
||||
* Create an access-request based on device_name and ike_sa_id
|
||||
*/
|
||||
static xmlNodePtr create_access_request(private_tnc_ifmap_soap_t *this,
|
||||
u_int32_t id)
|
||||
uint32_t id)
|
||||
{
|
||||
xmlNodePtr node;
|
||||
char buf[BUF_LEN];
|
||||
@@ -415,7 +415,7 @@ METHOD(tnc_ifmap_soap_t, publish_ike_sa, bool,
|
||||
identification_t *id, *eap_id, *group;
|
||||
host_t *host;
|
||||
auth_cfg_t *auth;
|
||||
u_int32_t ike_sa_id;
|
||||
uint32_t ike_sa_id;
|
||||
bool is_user = FALSE, first = TRUE, success;
|
||||
|
||||
/* extract relevant data from IKE_SA*/
|
||||
@@ -584,7 +584,7 @@ METHOD(tnc_ifmap_soap_t, publish_virtual_ips, bool,
|
||||
{
|
||||
tnc_ifmap_soap_msg_t *soap_msg;
|
||||
xmlNodePtr request, node;
|
||||
u_int32_t ike_sa_id;
|
||||
uint32_t ike_sa_id;
|
||||
enumerator_t *enumerator;
|
||||
host_t *vip;
|
||||
bool success;
|
||||
|
||||
Reference in New Issue
Block a user