Ethereal-dev: Re: [ethereal-dev] Packet-icq update

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxx>
Date: Mon, 25 Oct 1999 13:30:13 -0700 (PDT)
> A patch to the ICQ code. It's far from finished, but the login packets
> are displayed ok, as are the text messages.

Checked in, after replacing "u_int16_t" and "u_int32_t" with "guint16"
and "guint32", as not all platforms have "u_int16_t" and "u_int32_t" (it
didn't compile on Solaris 2.5.1, as it doesn't have them), changing the
type of the variable whose address was passed to "ctime()" to "time_t"
("time_t *" is the type of the argument that "ctime()" takes), and, in
"icqv5_cmd_login()", replacing "ipAddr" with "const u_char *ipAddrp"
(which is initialized to NULL) and handing it to "ip_to_str()" to
convert the address to a string.