debug
This commit is contained in:
parent
c4c7307fd4
commit
71111356d9
10
main.c
10
main.c
@ -42,16 +42,16 @@ void getutmp( int pid, char user[], char host_ip[], char host_ipv6[], time_t * t
|
||||
sprintf(host_ip, "%s", utmp->ut_host); //got ip of origin
|
||||
if((utmp->ut_addr_v6[1] && utmp->ut_addr_v6[2] && utmp->ut_addr_v6[3]) == 0)
|
||||
{
|
||||
ipv4 = utmp->ut_addr_v6[0] & 0x000000ff;
|
||||
sprintf( str, "%x.", ipv4);
|
||||
strcat(host_ip, str);
|
||||
ipv4 = (utmp->ut_addr_v6[0] & 0x0000ff00) >> 2;
|
||||
ipv4 = (utmp->ut_addr_v6[0] & 0xff000000) >> 6;
|
||||
sprintf( str, "%x.", ipv4);
|
||||
strcat(host_ip, str);
|
||||
ipv4 = (utmp->ut_addr_v6[0] & 0x00ff0000) >> 4;
|
||||
sprintf( str, "%x.", ipv4);
|
||||
strcat(host_ip, str);
|
||||
ipv4 = (utmp->ut_addr_v6[0] & 0xff000000) >> 6;
|
||||
ipv4 = (utmp->ut_addr_v6[0] & 0x0000ff00) >> 2;
|
||||
sprintf( str, "%x.", ipv4);
|
||||
strcat(host_ip, str);
|
||||
ipv4 = utmp->ut_addr_v6[0] & 0x000000ff;
|
||||
sprintf( str, "%x", ipv4);
|
||||
strcat(host_ip, str);
|
||||
|
||||
|
Reference in New Issue
Block a user