Use standard unsigned integer types
This commit is contained in:
@@ -105,7 +105,7 @@ struct interface_listener_t {
|
||||
/**
|
||||
* unique ID, used for various methods
|
||||
*/
|
||||
u_int32_t id;
|
||||
uint32_t id;
|
||||
|
||||
/**
|
||||
* semaphore to implement wait_for_listener()
|
||||
@@ -493,7 +493,7 @@ METHOD(job_t, terminate_ike_execute, job_requeue_t,
|
||||
interface_job_t *job)
|
||||
{
|
||||
interface_listener_t *listener = &job->listener;
|
||||
u_int32_t unique_id = listener->id;
|
||||
uint32_t unique_id = listener->id;
|
||||
ike_sa_t *ike_sa;
|
||||
|
||||
ike_sa = charon->ike_sa_manager->checkout_by_id(charon->ike_sa_manager,
|
||||
@@ -528,7 +528,7 @@ METHOD(job_t, terminate_ike_execute, job_requeue_t,
|
||||
}
|
||||
|
||||
METHOD(controller_t, terminate_ike, status_t,
|
||||
controller_t *this, u_int32_t unique_id,
|
||||
controller_t *this, uint32_t unique_id,
|
||||
controller_cb_t callback, void *param, u_int timeout)
|
||||
{
|
||||
interface_job_t *job;
|
||||
@@ -582,7 +582,7 @@ METHOD(job_t, terminate_child_execute, job_requeue_t,
|
||||
interface_job_t *job)
|
||||
{
|
||||
interface_listener_t *listener = &job->listener;
|
||||
u_int32_t id = listener->id;
|
||||
uint32_t id = listener->id;
|
||||
child_sa_t *child_sa;
|
||||
ike_sa_t *ike_sa;
|
||||
|
||||
@@ -630,7 +630,7 @@ METHOD(job_t, terminate_child_execute, job_requeue_t,
|
||||
}
|
||||
|
||||
METHOD(controller_t, terminate_child, status_t,
|
||||
controller_t *this, u_int32_t unique_id,
|
||||
controller_t *this, uint32_t unique_id,
|
||||
controller_cb_t callback, void *param, u_int timeout)
|
||||
{
|
||||
interface_job_t *job;
|
||||
|
||||
Reference in New Issue
Block a user