--- sourceforge.net/trunk/rdesktop/iso.c 2001/01/06 03:12:10 24 +++ sourceforge.net/trunk/rdesktop/iso.c 2001/01/06 03:47:04 25 @@ -21,7 +21,8 @@ #include "rdesktop.h" /* Send a self-contained ISO PDU */ -static void iso_send_msg(uint8 code) +static void +iso_send_msg(uint8 code) { STREAM s; @@ -42,7 +43,8 @@ } /* Receive a message on the ISO layer, return code */ -static STREAM iso_recv_msg(uint8 *code) +static STREAM +iso_recv_msg(uint8 *code) { STREAM s; uint16 length; @@ -80,7 +82,8 @@ } /* Initialise ISO transport data packet */ -STREAM iso_init(int length) +STREAM +iso_init(int length) { STREAM s; @@ -91,7 +94,8 @@ } /* Send an ISO data PDU */ -void iso_send(STREAM s) +void +iso_send(STREAM s) { uint16 length; @@ -110,7 +114,8 @@ } /* Receive ISO transport data packet */ -STREAM iso_recv() +STREAM +iso_recv() { STREAM s; uint8 code; @@ -126,7 +131,8 @@ } /* Establish a connection up to the ISO layer */ -BOOL iso_connect(char *server) +BOOL +iso_connect(char *server) { uint8 code; @@ -146,7 +152,8 @@ } /* Disconnect from the ISO layer */ -void iso_disconnect() +void +iso_disconnect() { iso_send_msg(ISO_PDU_DR); tcp_disconnect();