Use standard unsigned integer types
This commit is contained in:
@@ -46,7 +46,7 @@ struct private_imc_agent_t {
|
||||
/**
|
||||
* number of message types registered by IMC
|
||||
*/
|
||||
u_int32_t type_count;
|
||||
uint32_t type_count;
|
||||
|
||||
/**
|
||||
* ID of IMC as assigned by TNCC
|
||||
@@ -320,7 +320,7 @@ static char* get_str_attribute(private_imc_agent_t *this, TNC_ConnectionID id,
|
||||
/**
|
||||
* Read an UInt32 attribute
|
||||
*/
|
||||
static u_int32_t get_uint_attribute(private_imc_agent_t *this, TNC_ConnectionID id,
|
||||
static uint32_t get_uint_attribute(private_imc_agent_t *this, TNC_ConnectionID id,
|
||||
TNC_AttributeID attribute_id)
|
||||
{
|
||||
TNC_UInt32 len;
|
||||
@@ -341,7 +341,7 @@ METHOD(imc_agent_t, create_state, TNC_Result,
|
||||
TNC_ConnectionID conn_id;
|
||||
char *tnccs_p = NULL, *tnccs_v = NULL, *t_p = NULL, *t_v = NULL;
|
||||
bool has_long = FALSE, has_excl = FALSE, has_soh = FALSE;
|
||||
u_int32_t max_msg_len;
|
||||
uint32_t max_msg_len;
|
||||
|
||||
conn_id = state->get_connection_id(state);
|
||||
if (find_connection(this, conn_id))
|
||||
@@ -550,7 +550,7 @@ METHOD(imc_agent_t, destroy, void,
|
||||
* Described in header.
|
||||
*/
|
||||
imc_agent_t *imc_agent_create(const char *name,
|
||||
pen_type_t *supported_types, u_int32_t type_count,
|
||||
pen_type_t *supported_types, uint32_t type_count,
|
||||
TNC_IMCID id, TNC_Version *actual_version)
|
||||
{
|
||||
private_imc_agent_t *this;
|
||||
|
||||
@@ -198,7 +198,7 @@ struct imc_agent_t {
|
||||
*
|
||||
*/
|
||||
imc_agent_t *imc_agent_create(const char *name,
|
||||
pen_type_t *supported_types, u_int32_t type_count,
|
||||
pen_type_t *supported_types, uint32_t type_count,
|
||||
TNC_IMCID id, TNC_Version *actual_version);
|
||||
|
||||
#endif /** IMC_AGENT_H_ @}*/
|
||||
|
||||
@@ -69,7 +69,7 @@ METHOD(imc_os_info_t, get_name, chunk_t,
|
||||
}
|
||||
|
||||
METHOD(imc_os_info_t, get_numeric_version, void,
|
||||
private_imc_os_info_t *this, u_int32_t *major, u_int32_t *minor)
|
||||
private_imc_os_info_t *this, uint32_t *major, uint32_t *minor)
|
||||
{
|
||||
u_char *pos;
|
||||
|
||||
|
||||
@@ -54,8 +54,8 @@ struct imc_os_info_t {
|
||||
* @param major OS major version number
|
||||
* @param minor OS minor version number
|
||||
*/
|
||||
void (*get_numeric_version)(imc_os_info_t *this, u_int32_t *major,
|
||||
u_int32_t *minor);
|
||||
void (*get_numeric_version)(imc_os_info_t *this, uint32_t *major,
|
||||
uint32_t *minor);
|
||||
|
||||
/**
|
||||
* Get the OS version or release
|
||||
|
||||
@@ -72,14 +72,14 @@ struct imc_state_t {
|
||||
*
|
||||
* @param max_msg_len maximum size of a PA-TNC message
|
||||
*/
|
||||
void (*set_max_msg_len)(imc_state_t *this, u_int32_t max_msg_len);
|
||||
void (*set_max_msg_len)(imc_state_t *this, uint32_t max_msg_len);
|
||||
|
||||
/**
|
||||
* Get the maximum size of a PA-TNC message for this TNCCS connection
|
||||
*
|
||||
* @return maximum size of a PA-TNC message
|
||||
*/
|
||||
u_int32_t (*get_max_msg_len)(imc_state_t *this);
|
||||
uint32_t (*get_max_msg_len)(imc_state_t *this);
|
||||
|
||||
/**
|
||||
* Get attribute segmentation contracts associated with TNCCS Connection
|
||||
|
||||
Reference in New Issue
Block a user