Use proper C99 types
This commit is contained in:
parent
ad84a516bb
commit
39cdf4e2ab
@ -30,6 +30,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
@ -46,9 +47,9 @@
|
|||||||
/* only works for IPv4 */
|
/* only works for IPv4 */
|
||||||
static int addr_fprint(char *addr)
|
static int addr_fprint(char *addr)
|
||||||
{
|
{
|
||||||
u_int8_t split[4];
|
uint8_t split[4];
|
||||||
u_int32_t ip;
|
uint32_t ip;
|
||||||
u_int32_t *x = (u_int32_t *) addr;
|
uint32_t *x = (uint32_t *) addr;
|
||||||
|
|
||||||
ip = ntohl(*x);
|
ip = ntohl(*x);
|
||||||
split[0] = (ip & 0xff000000) >> 24;
|
split[0] = (ip & 0xff000000) >> 24;
|
||||||
@ -102,12 +103,12 @@ static struct hostent *hostent_fprint(struct hostent *host, const char *server_h
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
|
/* changes a c-string matching the perl regex \d+\.\d+\.\d+\.\d+
|
||||||
* into a u_int32_t
|
* into a uint32_t
|
||||||
*/
|
*/
|
||||||
static u_int32_t str_to_addr(const char *addr)
|
static uint32_t str_to_addr(const char *addr)
|
||||||
{
|
{
|
||||||
u_int32_t split[4];
|
uint32_t split[4];
|
||||||
u_int32_t ip;
|
uint32_t ip;
|
||||||
|
|
||||||
sscanf(addr, "%d.%d.%d.%d",
|
sscanf(addr, "%d.%d.%d.%d",
|
||||||
&split[0], &split[1], &split[2], &split[3]);
|
&split[0], &split[1], &split[2], &split[3]);
|
||||||
@ -199,4 +200,4 @@ int nslookup_main(int argc, char **argv)
|
|||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* $Id: nslookup.c,v 1.30 2003/03/19 09:12:38 mjn3 Exp $ */
|
/* $Id: nslookup.c,v 1.31 2004/01/30 22:40:05 andersen Exp $ */
|
||||||
|
@ -70,6 +70,7 @@
|
|||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -102,13 +103,13 @@
|
|||||||
* Note the 8-bit gid and atime and ctime.
|
* Note the 8-bit gid and atime and ctime.
|
||||||
*/
|
*/
|
||||||
struct minix_inode {
|
struct minix_inode {
|
||||||
u_int16_t i_mode;
|
uint16_t i_mode;
|
||||||
u_int16_t i_uid;
|
uint16_t i_uid;
|
||||||
u_int32_t i_size;
|
uint32_t i_size;
|
||||||
u_int32_t i_time;
|
uint32_t i_time;
|
||||||
u_int8_t i_gid;
|
uint8_t i_gid;
|
||||||
u_int8_t i_nlinks;
|
uint8_t i_nlinks;
|
||||||
u_int16_t i_zone[9];
|
uint16_t i_zone[9];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -118,35 +119,35 @@ struct minix_inode {
|
|||||||
* now 16-bit. The inode is now 64 bytes instead of 32.
|
* now 16-bit. The inode is now 64 bytes instead of 32.
|
||||||
*/
|
*/
|
||||||
struct minix2_inode {
|
struct minix2_inode {
|
||||||
u_int16_t i_mode;
|
uint16_t i_mode;
|
||||||
u_int16_t i_nlinks;
|
uint16_t i_nlinks;
|
||||||
u_int16_t i_uid;
|
uint16_t i_uid;
|
||||||
u_int16_t i_gid;
|
uint16_t i_gid;
|
||||||
u_int32_t i_size;
|
uint32_t i_size;
|
||||||
u_int32_t i_atime;
|
uint32_t i_atime;
|
||||||
u_int32_t i_mtime;
|
uint32_t i_mtime;
|
||||||
u_int32_t i_ctime;
|
uint32_t i_ctime;
|
||||||
u_int32_t i_zone[10];
|
uint32_t i_zone[10];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* minix super-block data on disk
|
* minix super-block data on disk
|
||||||
*/
|
*/
|
||||||
struct minix_super_block {
|
struct minix_super_block {
|
||||||
u_int16_t s_ninodes;
|
uint16_t s_ninodes;
|
||||||
u_int16_t s_nzones;
|
uint16_t s_nzones;
|
||||||
u_int16_t s_imap_blocks;
|
uint16_t s_imap_blocks;
|
||||||
u_int16_t s_zmap_blocks;
|
uint16_t s_zmap_blocks;
|
||||||
u_int16_t s_firstdatazone;
|
uint16_t s_firstdatazone;
|
||||||
u_int16_t s_log_zone_size;
|
uint16_t s_log_zone_size;
|
||||||
u_int32_t s_max_size;
|
uint32_t s_max_size;
|
||||||
u_int16_t s_magic;
|
uint16_t s_magic;
|
||||||
u_int16_t s_state;
|
uint16_t s_state;
|
||||||
u_int32_t s_zones;
|
uint32_t s_zones;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct minix_dir_entry {
|
struct minix_dir_entry {
|
||||||
u_int16_t inode;
|
uint16_t inode;
|
||||||
char name[0];
|
char name[0];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user