===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
utalk-1.0.1.beta/comm.c-57-/* return host address in network order */
utalk-1.0.1.beta/comm.c:58:static srdp_u32 gethostaddr(char *s) {
utalk-1.0.1.beta/comm.c-59-  struct hostent *h;
##############################################
utalk-1.0.1.beta/comm.c-61-
utalk-1.0.1.beta/comm.c:62:  if ((tmp = inet_addr(s)) == 0xffffffff) {
utalk-1.0.1.beta/comm.c-63-    if ((h = gethostbyname(s)) == NULL)
##############################################
utalk-1.0.1.beta/comm.c-345-
utalk-1.0.1.beta/comm.c:346:  users[1]->hostaddr = gethostaddr(users[1]->hostname);
utalk-1.0.1.beta/comm.c-347-
##############################################
utalk-1.0.1.beta/comm.c-519-
utalk-1.0.1.beta/comm.c:520:  users[0]->hostaddr = gethostaddr(users[0]->hostname);
utalk-1.0.1.beta/comm.c-521-
##############################################
utalk-1.0.1.beta/comm.c-559-    users[1]->info.remote.s_addr = 
utalk-1.0.1.beta/comm.c:560:      (raw>0 ? gethostaddr(h) : users[1]->hostaddr);
utalk-1.0.1.beta/comm.c-561-  else