summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2008-10-30 12:01:06 +0100
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-06 17:15:13 -0200
commitb01e82ce1deedb36c9696d4d27a3b9a5d5a52d08 (patch)
tree4e7d624bec961376da0ff497c2757699160d0483 /src
parent2aba1bc0583aeb3ee6e26e3bfacd123abef744d9 (diff)
ANSI C
convert all old style function declarations see also: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> http://bugs.freedesktop.org/show_bug.cgi?id=14683 http://bugs.freedesktop.org/attachment.cgi?id=14582 see also: Magnus Kessler <Magnus.Kessler@gmx.net> http://lists.freedesktop.org/archives/xorg/2008-October/039799.html http://lists.freedesktop.org/archives/xorg/attachments/20081030/b2ea5b1c/attachment-0001.bin
Diffstat (limited to 'src')
-rw-r--r--src/accept.c9
-rw-r--r--[-rwxr-xr-x]src/authutil.c55
-rw-r--r--src/connect.c25
-rw-r--r--src/error.c147
-rw-r--r--src/getauth.c68
-rw-r--r--src/iceauth.c7
-rw-r--r--src/listen.c54
-rw-r--r--src/listenwk.c15
-rw-r--r--src/locking.c19
-rw-r--r--src/misc.c190
-rw-r--r--src/ping.c11
-rw-r--r--src/process.c215
-rw-r--r--src/protosetup.c27
-rw-r--r--src/register.c56
-rw-r--r--src/replywait.c36
-rw-r--r--src/setauth.c9
-rw-r--r--src/shutdown.c39
-rw-r--r--src/watch.c32
18 files changed, 454 insertions, 560 deletions
diff --git a/src/accept.c b/src/accept.c
index d54ffd4..f102b29 100644
--- a/src/accept.c
+++ b/src/accept.c
@@ -36,11 +36,10 @@ Author: Ralph Mor, X Consortium
IceConn
-IceAcceptConnection (listenObj, statusRet)
-
-IceListenObj listenObj;
-IceAcceptStatus *statusRet;
-
+IceAcceptConnection (
+ IceListenObj listenObj,
+ IceAcceptStatus *statusRet
+)
{
IceConn iceConn;
XtransConnInfo newconn;
diff --git a/src/authutil.c b/src/authutil.c
index 9cb3deb..65d256f 100755..100644
--- a/src/authutil.c
+++ b/src/authutil.c
@@ -72,7 +72,6 @@ static Status write_counted_string (FILE *file, unsigned short count, char *stri
char *
IceAuthFileName (void)
-
{
static char slashDotICEauthority[] = "/.ICEauthority";
char *name;
@@ -140,13 +139,12 @@ IceAuthFileName (void)
int
-IceLockAuthFile (file_name, retries, timeout, dead)
-
-char *file_name;
-int retries;
-int timeout;
-long dead;
-
+IceLockAuthFile (
+ char *file_name,
+ int retries,
+ int timeout,
+ long dead
+)
{
char creat_name[1025], link_name[1025];
struct stat statb;
@@ -217,10 +215,9 @@ long dead;
void
-IceUnlockAuthFile (file_name)
-
-char *file_name;
-
+IceUnlockAuthFile (
+ char *file_name
+)
{
#ifndef WIN32
char creat_name[1025];
@@ -246,10 +243,9 @@ char *file_name;
IceAuthFileEntry *
-IceReadAuthFileEntry (auth_file)
-
-FILE *auth_file;
-
+IceReadAuthFileEntry (
+ FILE *auth_file
+)
{
IceAuthFileEntry local;
IceAuthFileEntry *ret;
@@ -298,10 +294,9 @@ FILE *auth_file;
void
-IceFreeAuthFileEntry (auth)
-
-IceAuthFileEntry *auth;
-
+IceFreeAuthFileEntry (
+ IceAuthFileEntry *auth
+)
{
if (auth)
{
@@ -317,11 +312,10 @@ IceAuthFileEntry *auth;
Status
-IceWriteAuthFileEntry (auth_file, auth)
-
-FILE *auth_file;
-IceAuthFileEntry *auth;
-
+IceWriteAuthFileEntry (
+ FILE *auth_file,
+ IceAuthFileEntry *auth
+)
{
if (!write_string (auth_file, auth->protocol_name))
return (0);
@@ -346,12 +340,11 @@ IceAuthFileEntry *auth;
IceAuthFileEntry *
-IceGetAuthFileEntry (protocol_name, network_id, auth_name)
-
-char *protocol_name;
-char *network_id;
-char *auth_name;
-
+IceGetAuthFileEntry (
+ char *protocol_name,
+ char *network_id,
+ char *auth_name
+)
{
FILE *auth_file;
char *filename;
diff --git a/src/connect.c b/src/connect.c
index 3874058..f948a0a 100644
--- a/src/connect.c
+++ b/src/connect.c
@@ -42,16 +42,14 @@ static XtransConnInfo ConnectToPeer(char *networkIdsList,
#define Strstr strstr
IceConn
-IceOpenConnection (networkIdsList, context, mustAuthenticate, majorOpcodeCheck,
- errorLength, errorStringRet)
-
-char *networkIdsList;
-IcePointer context;
-Bool mustAuthenticate;
-int majorOpcodeCheck;
-int errorLength;
-char *errorStringRet;
-
+IceOpenConnection (
+ char *networkIdsList,
+ IcePointer context,
+ Bool mustAuthenticate,
+ int majorOpcodeCheck,
+ int errorLength,
+ char *errorStringRet
+)
{
IceConn iceConn;
int extra, i, j;
@@ -432,10 +430,9 @@ char *errorStringRet;
IcePointer
-IceGetConnectionContext (iceConn)
-
-IceConn iceConn;
-
+IceGetConnectionContext (
+ IceConn iceConn
+)
{
return (iceConn->context);
}
diff --git a/src/error.c b/src/error.c
index f0ce72a..44b8853 100644
--- a/src/error.c
+++ b/src/error.c
@@ -40,13 +40,12 @@ Author: Ralph Mor, X Consortium
void
-_IceErrorBadMinor (iceConn, majorOpcode, offendingMinor, severity)
-
-IceConn iceConn;
-int majorOpcode;
-int offendingMinor;
-int severity;
-
+_IceErrorBadMinor (
+ IceConn iceConn,
+ int majorOpcode,
+ int offendingMinor,
+ int severity
+)
{
IceErrorHeader (iceConn,
majorOpcode, offendingMinor,
@@ -60,13 +59,12 @@ int severity;
void
-_IceErrorBadState (iceConn, majorOpcode, offendingMinor, severity)
-
-IceConn iceConn;
-int majorOpcode;
-int offendingMinor;
-int severity;
-
+_IceErrorBadState (
+ IceConn iceConn,
+ int majorOpcode,
+ int offendingMinor,
+ int severity
+)
{
IceErrorHeader (iceConn,
majorOpcode, offendingMinor,
@@ -80,13 +78,12 @@ int severity;
void
-_IceErrorBadLength (iceConn, majorOpcode, offendingMinor, severity)
-
-IceConn iceConn;
-int majorOpcode;
-int offendingMinor;
-int severity;
-
+_IceErrorBadLength (
+ IceConn iceConn,
+ int majorOpcode,
+ int offendingMinor,
+ int severity
+)
{
IceErrorHeader (iceConn,
majorOpcode, offendingMinor,
@@ -100,15 +97,14 @@ int severity;
void
-_IceErrorBadValue (iceConn, majorOpcode, offendingMinor, offset, length, value)
-
-IceConn iceConn;
-int majorOpcode;
-int offendingMinor;
-int offset;
-int length; /* in bytes */
-IcePointer value;
-
+_IceErrorBadValue (
+ IceConn iceConn,
+ int majorOpcode,
+ int offendingMinor,
+ int offset,
+ int length, /* in bytes */
+ IcePointer value
+)
{
IceErrorHeader (iceConn,
majorOpcode, offendingMinor,
@@ -129,11 +125,10 @@ IcePointer value;
void
-_IceErrorNoAuthentication (iceConn, offendingMinor)
-
-IceConn iceConn;
-int offendingMinor;
-
+_IceErrorNoAuthentication (
+ IceConn iceConn,
+ int offendingMinor
+)
{
int severity = (offendingMinor == ICE_ConnectionSetup) ?
IceFatalToConnection : IceFatalToProtocol;
@@ -150,11 +145,10 @@ int offendingMinor;
void
-_IceErrorNoVersion (iceConn, offendingMinor)
-
-IceConn iceConn;
-int offendingMinor;
-
+_IceErrorNoVersion (
+ IceConn iceConn,
+ int offendingMinor
+)
{
int severity = (offendingMinor == ICE_ConnectionSetup) ?
IceFatalToConnection : IceFatalToProtocol;
@@ -171,12 +165,11 @@ int offendingMinor;
void
-_IceErrorSetupFailed (iceConn, offendingMinor, reason)
-
-IceConn iceConn;
-int offendingMinor;
-char *reason;
-
+_IceErrorSetupFailed (
+ IceConn iceConn,
+ int offendingMinor,
+ char *reason
+)
{
char *pBuf, *pStart;
int bytes;
@@ -203,12 +196,11 @@ char *reason;
void
-_IceErrorAuthenticationRejected (iceConn, offendingMinor, reason)
-
-IceConn iceConn;
-int offendingMinor;
-char *reason;
-
+_IceErrorAuthenticationRejected (
+ IceConn iceConn,
+ int offendingMinor,
+ char *reason
+)
{
char *pBuf, *pStart;
int bytes;
@@ -233,12 +225,11 @@ char *reason;
void
-_IceErrorAuthenticationFailed (iceConn, offendingMinor, reason)
-
-IceConn iceConn;
-int offendingMinor;
-char *reason;
-
+_IceErrorAuthenticationFailed (
+ IceConn iceConn,
+ int offendingMinor,
+ char *reason
+)
{
char *pBuf, *pStart;
int bytes;
@@ -263,11 +254,10 @@ char *reason;
void
-_IceErrorProtocolDuplicate (iceConn, protocolName)
-
-IceConn iceConn;
-char *protocolName;
-
+_IceErrorProtocolDuplicate (
+ IceConn iceConn,
+ char *protocolName
+)
{
char *pBuf, *pStart;
int bytes;
@@ -292,11 +282,10 @@ char *protocolName;
void
-_IceErrorMajorOpcodeDuplicate (iceConn, majorOpcode)
-
-IceConn iceConn;
-int majorOpcode;
-
+_IceErrorMajorOpcodeDuplicate (
+ IceConn iceConn,
+ int majorOpcode
+)
{
char mOp = (char) majorOpcode;
@@ -313,11 +302,10 @@ int majorOpcode;
void
-_IceErrorUnknownProtocol (iceConn, protocolName)
-
-IceConn iceConn;
-char *protocolName;
-
+_IceErrorUnknownProtocol (
+ IceConn iceConn,
+ char *protocolName
+)
{
char *pBuf, *pStart;
int bytes;
@@ -342,13 +330,12 @@ char *protocolName;
void
-_IceErrorBadMajor (iceConn, offendingMajor, offendingMinor, severity)
-
-IceConn iceConn;
-int offendingMajor;
-int offendingMinor;
-int severity;
-
+_IceErrorBadMajor (
+ IceConn iceConn,
+ int offendingMajor,
+ int offendingMinor,
+ int severity
+)
{
char maj = (char) offendingMajor;
diff --git a/src/getauth.c b/src/getauth.c
index 4ad7878..6641512 100644
--- a/src/getauth.c
+++ b/src/getauth.c
@@ -60,15 +60,13 @@ extern IceAuthDataEntry _IcePaAuthDataEntries[];
*/
void
-_IceGetPoAuthData (protocolName, networkId, authName,
- authDataLenRet, authDataRet)
-
-char *protocolName;
-char *networkId;
-char *authName;
-unsigned short *authDataLenRet;
-char **authDataRet;
-
+_IceGetPoAuthData (
+ char *protocolName,
+ char *networkId,
+ char *authName,
+ unsigned short *authDataLenRet,
+ char **authDataRet
+)
{
IceAuthFileEntry *entry;
@@ -93,15 +91,13 @@ char **authDataRet;
void
-_IceGetPaAuthData (protocolName, networkId, authName,
- authDataLenRet, authDataRet)
-
-char *protocolName;
-char *networkId;
-char *authName;
-unsigned short *authDataLenRet;
-char **authDataRet;
-
+_IceGetPaAuthData (
+ char *protocolName,
+ char *networkId,
+ char *authName,
+ unsigned short *authDataLenRet,
+ char **authDataRet
+)
{
IceAuthDataEntry *entry = NULL;
int found = 0;
@@ -134,16 +130,14 @@ char **authDataRet;
void
-_IceGetPoValidAuthIndices (protocol_name, network_id,
- num_auth_names, auth_names, num_indices_ret, indices_ret)
-
-char *protocol_name;
-char *network_id;
-int num_auth_names;
-char **auth_names;
-int *num_indices_ret;
-int *indices_ret; /* in/out arg */
-
+_IceGetPoValidAuthIndices (
+ char *protocol_name,
+ char *network_id,
+ int num_auth_names,
+ char **auth_names,
+ int *num_indices_ret,
+ int *indices_ret /* in/out arg */
+)
{
FILE *auth_file;
char *filename;
@@ -195,16 +189,14 @@ int *indices_ret; /* in/out arg */
void
-_IceGetPaValidAuthIndices (protocol_name, network_id,
- num_auth_names, auth_names, num_indices_ret, indices_ret)
-
-char *protocol_name;
-char *network_id;
-int num_auth_names;
-char **auth_names;
-int *num_indices_ret;
-int *indices_ret; /* in/out arg */
-
+_IceGetPaValidAuthIndices (
+ char *protocol_name,
+ char *network_id,
+ int num_auth_names,
+ char **auth_names,
+ int *num_indices_ret,
+ int *indices_ret /* in/out arg */
+)
{
int index_ret;
int i, j;
diff --git a/src/iceauth.c b/src/iceauth.c
index d782954..6addcf8 100644
--- a/src/iceauth.c
+++ b/src/iceauth.c
@@ -49,10 +49,9 @@ static int was_called_state;
char *
-IceGenerateMagicCookie (len)
-
-int len;
-
+IceGenerateMagicCookie (
+ int len
+)
{
char *auth;
long ldata[2];
diff --git a/src/listen.c b/src/listen.c
index d3aa4b2..eb46f87 100644
--- a/src/listen.c
+++ b/src/listen.c
@@ -37,13 +37,12 @@ Author: Ralph Mor, X Consortium
Status
-IceListenForConnections (countRet, listenObjsRet, errorLength, errorStringRet)
-
-int *countRet;
-IceListenObj **listenObjsRet;
-int errorLength;
-char *errorStringRet;
-
+IceListenForConnections (
+ int *countRet,
+ IceListenObj **listenObjsRet,
+ int errorLength,
+ char *errorStringRet
+)
{
struct _IceListenObj *listenObjs;
char *networkId;
@@ -161,10 +160,9 @@ char *errorStringRet;
int
-IceGetListenConnectionNumber (listenObj)
-
-IceListenObj listenObj;
-
+IceGetListenConnectionNumber (
+ IceListenObj listenObj
+)
{
return (_IceTransGetConnectionNumber (listenObj->trans_conn));
}
@@ -172,10 +170,9 @@ IceListenObj listenObj;
char *
-IceGetListenConnectionString (listenObj)
-
-IceListenObj listenObj;
-
+IceGetListenConnectionString (
+ IceListenObj listenObj
+)
{
return strdup(listenObj->network_id);
}
@@ -183,11 +180,10 @@ IceListenObj listenObj;
char *
-IceComposeNetworkIdList (count, listenObjs)
-
-int count;
-IceListenObj *listenObjs;
-
+IceComposeNetworkIdList (
+ int count,
+ IceListenObj *listenObjs
+)
{
char *list;
int len = 0;
@@ -241,11 +237,10 @@ IceListenObj *listenObjs;
void
-IceFreeListenObjs (count, listenObjs)
-
-int count;
-IceListenObj *listenObjs;
-
+IceFreeListenObjs (
+ int count,
+ IceListenObj *listenObjs
+)
{
int i;
@@ -268,11 +263,10 @@ IceListenObj *listenObjs;
*/
void
-IceSetHostBasedAuthProc (listenObj, hostBasedAuthProc)
-
-IceListenObj listenObj;
-IceHostBasedAuthProc hostBasedAuthProc;
-
+IceSetHostBasedAuthProc (
+ IceListenObj listenObj,
+ IceHostBasedAuthProc hostBasedAuthProc
+)
{
listenObj->host_based_auth_proc = hostBasedAuthProc;
}
diff --git a/src/listenwk.c b/src/listenwk.c
index 26bb6e0..f5061c4 100644
--- a/src/listenwk.c
+++ b/src/listenwk.c
@@ -40,14 +40,13 @@ in this Software without prior written authorization from The Open Group.
Status
-IceListenForWellKnownConnections (port, countRet, listenObjsRet, errorLength, errorStringRet)
-
-char *port;
-int *countRet;
-IceListenObj **listenObjsRet;
-int errorLength;
-char *errorStringRet;
-
+IceListenForWellKnownConnections (
+ char *port,
+ int *countRet,
+ IceListenObj **listenObjsRet,
+ int errorLength,
+ char *errorStringRet
+)
{
struct _IceListenObj *listenObjs;
char *networkId;
diff --git a/src/locking.c b/src/locking.c
index 5108030..e504e3f 100644
--- a/src/locking.c
+++ b/src/locking.c
@@ -40,28 +40,27 @@ Author: Ralph Mor, X Consortium
Status
-IceInitThreads ()
-
+IceInitThreads (
+ void
+)
{
return (0);
}
void
-IceAppLockConn (iceConn)
-
-IceConn iceConn;
-
+IceAppLockConn (
+ IceConn iceConn
+)
{
IceLockConn (iceConn);
}
void
-IceAppUnlockConn (iceConn)
-
-IceConn iceConn;
-
+IceAppUnlockConn (
+ IceConn iceConn
+)
{
IceUnlockConn (iceConn);
}
diff --git a/src/misc.c b/src/misc.c
index 304ae60..ea8bbde 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -49,11 +49,10 @@ Author: Ralph Mor, X Consortium
*/
char *
-IceAllocScratch (iceConn, size)
-
-IceConn iceConn;
-unsigned long size;
-
+IceAllocScratch (
+ IceConn iceConn,
+ unsigned long size
+)
{
if (!iceConn->scratch || size > iceConn->scratch_size)
{
@@ -74,10 +73,9 @@ unsigned long size;
*/
int
-IceFlush (iceConn)
-
-IceConn iceConn;
-
+IceFlush (
+ IceConn iceConn
+)
{
_IceWrite (iceConn,
(unsigned long) (iceConn->outbufptr - iceConn->outbuf),
@@ -89,20 +87,18 @@ IceConn iceConn;
int
-IceGetOutBufSize (iceConn)
-
-IceConn iceConn;
-
+IceGetOutBufSize (
+ IceConn iceConn
+)
{
return (iceConn->outbufmax - iceConn->outbuf);
}
int
-IceGetInBufSize (iceConn)
-
-IceConn iceConn;
-
+IceGetInBufSize (
+ IceConn iceConn
+)
{
return (iceConn->inbufmax - iceConn->inbuf);
}
@@ -114,70 +110,63 @@ IceConn iceConn;
*/
IceConnectStatus
-IceConnectionStatus (iceConn)
-
-IceConn iceConn;
-
+IceConnectionStatus (
+ IceConn iceConn
+)
{
return (iceConn->connection_status);
}
char *
-IceVendor (iceConn)
-
-IceConn iceConn;
-
+IceVendor (
+ IceConn iceConn
+)
{
return strdup(iceConn->vendor);
}
char *
-IceRelease (iceConn)
-
-IceConn iceConn;
-
+IceRelease (
+ IceConn iceConn
+)
{
return strdup(iceConn->release);
}
int
-IceProtocolVersion (iceConn)
-
-IceConn iceConn;
-
+IceProtocolVersion (
+ IceConn iceConn
+)
{
return (_IceVersions[iceConn->my_ice_version_index].major_version);
}
int
-IceProtocolRevision (iceConn)
-
-IceConn iceConn;
-
+IceProtocolRevision (
+ IceConn iceConn
+)
{
return (_IceVersions[iceConn->my_ice_version_index].minor_version);
}
int
-IceConnectionNumber (iceConn)
-
-IceConn iceConn;
-
+IceConnectionNumber (
+ IceConn iceConn
+)
{
return (_IceTransGetConnectionNumber (iceConn->trans_conn));
}
char *
-IceConnectionString (iceConn)
-
-IceConn iceConn;
-
+IceConnectionString (
+ IceConn iceConn
+)
{
if (iceConn->connection_string)
{
@@ -189,30 +178,27 @@ IceConn iceConn;
unsigned long
-IceLastSentSequenceNumber (iceConn)
-
-IceConn iceConn;
-
+IceLastSentSequenceNumber (
+ IceConn iceConn
+)
{
return (iceConn->send_sequence);
}
unsigned long
-IceLastReceivedSequenceNumber (iceConn)
-
-IceConn iceConn;
-
+IceLastReceivedSequenceNumber (
+ IceConn iceConn
+)
{
return (iceConn->receive_sequence);
}
Bool
-IceSwapping (iceConn)
-
-IceConn iceConn;
-
+IceSwapping (
+ IceConn iceConn
+)
{
return (iceConn->swap);
}
@@ -227,12 +213,11 @@ IceConn iceConn;
*/
Status
-_IceRead (iceConn, nbytes, ptr)
-
-register IceConn iceConn;
-unsigned long nbytes;
-register char *ptr;
-
+_IceRead (
+ register IceConn iceConn,
+ unsigned long nbytes,
+ register char *ptr
+)
{
register unsigned long nleft;
@@ -327,11 +312,10 @@ register char *ptr;
*/
void
-_IceReadSkip (iceConn, nbytes)
-
-register IceConn iceConn;
-register unsigned long nbytes;
-
+_IceReadSkip (
+ register IceConn iceConn,
+ register unsigned long nbytes
+)
{
char temp[512];
@@ -351,12 +335,11 @@ register unsigned long nbytes;
*/
void
-_IceWrite (iceConn, nbytes, ptr)
-
-register IceConn iceConn;
-unsigned long nbytes;
-register char *ptr;
-
+_IceWrite (
+ register IceConn iceConn,
+ unsigned long nbytes,
+ register char *ptr
+)
{
register unsigned long nleft;
@@ -427,12 +410,11 @@ register char *ptr;
#ifdef WORD64
-IceWriteData16 (iceConn, nbytes, data)
-
-IceConn iceConn;
-unsigned long nbytes;
-short *data;
-
+IceWriteData16 (
+ IceConn iceConn,
+ unsigned long nbytes,
+ short *data
+)
{
int numShorts = nbytes / 2;
int index = 0;
@@ -458,12 +440,11 @@ short *data;
}
-IceWriteData32 (iceConn, nbytes, data)
-
-IceConn iceConn;
-unsigned long nbytes;
-int *data;
-
+IceWriteData32 (
+ IceConn iceConn,
+ unsigned long nbytes,
+ int *data
+)
{
int numLongs = nbytes / 4;
int index = 0;
@@ -489,25 +470,23 @@ int *data;
}
-IceReadData16 (iceConn, swap, nbytes, data)
-
-IceConn iceConn;
-Bool swap;
-unsigned long nbytes;
-short *data;
-
+IceReadData16 (
+ IceConn iceConn,
+ Bool swap,
+ unsigned long nbytes,
+ short *data
+)
{
/* NOT IMPLEMENTED YET */
}
-IceReadData32 (iceConn, swap, nbytes, data)
-
-IceConn iceConn;
-Bool swap;
-unsigned long nbytes;
-int *data;
-
+IceReadData32 (
+ IceConn iceConn,
+ Bool swap,
+ unsigned long nbytes,
+ int *data
+)
{
/* NOT IMPLEMENTED YET */
}
@@ -517,12 +496,11 @@ int *data;
void
-_IceAddOpcodeMapping (iceConn, hisOpcode, myOpcode)
-
-IceConn iceConn;
-int hisOpcode;
-int myOpcode;
-
+_IceAddOpcodeMapping (
+ IceConn iceConn,
+ int hisOpcode,
+ int myOpcode
+)
{
if (hisOpcode <= 0 || hisOpcode > 255)
{
diff --git a/src/ping.c b/src/ping.c
index 45329b6..04fe735 100644
--- a/src/ping.c
+++ b/src/ping.c
@@ -34,12 +34,11 @@ Author: Ralph Mor, X Consortium
#include "ICElibint.h"
Status
-IcePing (iceConn, pingReplyProc, clientData)
-
-IceConn iceConn;
-IcePingReplyProc pingReplyProc;
-IcePointer clientData;
-
+IcePing (
+ IceConn iceConn,
+ IcePingReplyProc pingReplyProc,
+ IcePointer clientData
+)
{
_IcePingWait *newping = (_IcePingWait *) malloc (sizeof (_IcePingWait));
_IcePingWait *ptr = iceConn->ping_waits;
diff --git a/src/process.c b/src/process.c
index ebb91c3..7797641 100644
--- a/src/process.c
+++ b/src/process.c
@@ -124,12 +124,11 @@ Author: Ralph Mor, X Consortium
*/
IceProcessMessagesStatus
-IceProcessMessages (iceConn, replyWait, replyReadyRet)
-
-IceConn iceConn;
-IceReplyWaitInfo *replyWait;
-Bool *replyReadyRet;
-
+IceProcessMessages (
+ IceConn iceConn,
+ IceReplyWaitInfo *replyWait,
+ Bool *replyReadyRet
+)
{
iceMsg *header;
Bool replyReady = False;
@@ -390,13 +389,12 @@ Bool *replyReadyRet;
static void
-AuthRequired (iceConn, authIndex, authDataLen, authData)
-
-IceConn iceConn;
-int authIndex;
-int authDataLen;
-IcePointer authData;
-
+AuthRequired (
+ IceConn iceConn,
+ int authIndex,
+ int authDataLen,
+ IcePointer authData
+)
{
iceAuthRequiredMsg *pMsg;
@@ -418,12 +416,11 @@ IcePointer authData;
static void
-AuthReply (iceConn, authDataLen, authData)
-
-IceConn iceConn;
-int authDataLen;
-IcePointer authData;
-
+AuthReply (
+ IceConn iceConn,
+ int authDataLen,
+ IcePointer authData
+)
{
iceAuthReplyMsg *pMsg;
@@ -444,12 +441,11 @@ IcePointer authData;
static void
-AuthNextPhase (iceConn, authDataLen, authData)
-
-IceConn iceConn;
-int authDataLen;
-IcePointer authData;
-
+AuthNextPhase (
+ IceConn iceConn,
+ int authDataLen,
+ IcePointer authData
+)
{
iceAuthNextPhaseMsg *pMsg;
@@ -470,11 +466,10 @@ IcePointer authData;
static void
-AcceptConnection (iceConn, versionIndex)
-
-IceConn iceConn;
-int versionIndex;
-
+AcceptConnection (
+ IceConn iceConn,
+ int versionIndex
+)
{
iceConnectionReplyMsg *pMsg;
char *pData;
@@ -499,15 +494,14 @@ int versionIndex;
static void
-AcceptProtocol (iceConn, hisOpcode, myOpcode, versionIndex, vendor, release)
-
-IceConn iceConn;
-int hisOpcode;
-int myOpcode;
-int versionIndex;
-char *vendor;
-char *release;
-
+AcceptProtocol (
+ IceConn iceConn,
+ int hisOpcode,
+ int myOpcode,
+ int versionIndex,
+ char *vendor,
+ char *release
+)
{
iceProtocolReplyMsg *pMsg;
char *pData;
@@ -540,10 +534,9 @@ char *release;
static void
-PingReply (iceConn)
-
-IceConn iceConn;
-
+PingReply (
+ IceConn iceConn
+)
{
IceSimpleMessage (iceConn, 0, ICE_PingReply);
IceFlush (iceConn);
@@ -552,13 +545,12 @@ IceConn iceConn;
static Bool
-ProcessError (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessError (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
int invokeHandler = 0;
Bool errorReturned = False;
@@ -822,12 +814,11 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessConnectionSetup (iceConn, length, swap)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-
+ProcessConnectionSetup (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap
+)
{
iceConnectionSetupMsg *message;
int myVersionCount, hisVersionCount;
@@ -1077,13 +1068,12 @@ Bool swap;
static Bool
-ProcessAuthRequired (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessAuthRequired (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceAuthRequiredMsg *message;
int authDataLen;
@@ -1272,12 +1262,11 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessAuthReply (iceConn, length, swap)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-
+ProcessAuthReply (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap
+)
{
iceAuthReplyMsg *message;
int replyDataLen;
@@ -1568,13 +1557,12 @@ Bool swap;
static Bool
-ProcessAuthNextPhase (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessAuthNextPhase (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceAuthNextPhaseMsg *message;
int authDataLen;
@@ -1701,13 +1689,12 @@ IceReplyWaitInfo *replyWait;
static Bool
-ProcessConnectionReply (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessConnectionReply (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceConnectionReplyMsg *message;
char *pData, *pStart, *pEnd;
@@ -1804,12 +1791,11 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessProtocolSetup (iceConn, length, swap)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-
+ProcessProtocolSetup (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap
+)
{
iceProtocolSetupMsg *message;
_IcePaProtocol *myProtocol;
@@ -2202,13 +2188,12 @@ Bool swap;
static Bool
-ProcessProtocolReply (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessProtocolReply (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceProtocolReplyMsg *message;
char *pData, *pStart, *pEnd;
@@ -2317,11 +2302,10 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessPing (iceConn, length)
-
-IceConn iceConn;
-unsigned long length;
-
+ProcessPing (
+ IceConn iceConn,
+ unsigned long length
+)
{
CHECK_SIZE_MATCH (iceConn, ICE_Ping,
length, SIZEOF (icePingMsg), IceFatalToConnection, 0);
@@ -2334,11 +2318,10 @@ unsigned long length;
static int
-ProcessPingReply (iceConn, length)
-
-IceConn iceConn;
-unsigned long length;
-
+ProcessPingReply (
+ IceConn iceConn,
+ unsigned long length
+)
{
CHECK_SIZE_MATCH (iceConn, ICE_PingReply,
length, SIZEOF (icePingReplyMsg), IceFatalToConnection, 0);
@@ -2364,12 +2347,11 @@ unsigned long length;
static int
-ProcessWantToClose (iceConn, length, connectionClosedRet)
-
-IceConn iceConn;
-unsigned long length;
-Bool *connectionClosedRet;
-
+ProcessWantToClose (
+ IceConn iceConn,
+ unsigned long length,
+ Bool *connectionClosedRet
+)
{
*connectionClosedRet = False;
@@ -2424,11 +2406,10 @@ Bool *connectionClosedRet;
static int
-ProcessNoClose (iceConn, length)
-
-IceConn iceConn;
-unsigned long length;
-
+ProcessNoClose (
+ IceConn iceConn,
+ unsigned long length
+)
{
CHECK_SIZE_MATCH (iceConn, ICE_NoClose,
length, SIZEOF (iceNoCloseMsg), IceFatalToConnection, 0);
diff --git a/src/protosetup.c b/src/protosetup.c
index 7a21e2e..c6f19e1 100644
--- a/src/protosetup.c
+++ b/src/protosetup.c
@@ -36,21 +36,18 @@ Author: Ralph Mor, X Consortium
IceProtocolSetupStatus
-IceProtocolSetup (iceConn, myOpcode, clientData, mustAuthenticate,
- majorVersionRet, minorVersionRet, vendorRet, releaseRet,
- errorLength, errorStringRet)
-
-IceConn iceConn;
-int myOpcode;
-IcePointer clientData;
-Bool mustAuthenticate;
-int *majorVersionRet;
-int *minorVersionRet;
-char **vendorRet;
-char **releaseRet;
-int errorLength;
-char *errorStringRet;
-
+IceProtocolSetup (
+ IceConn iceConn,
+ int myOpcode,
+ IcePointer clientData,
+ Bool mustAuthenticate,
+ int *majorVersionRet,
+ int *minorVersionRet,
+ char **vendorRet,
+ char **releaseRet,
+ int errorLength,
+ char *errorStringRet
+)
{
iceProtocolSetupMsg *pMsg;
char *pData;
diff --git a/src/register.c b/src/register.c
index 501725f..ac04df5 100644
--- a/src/register.c
+++ b/src/register.c
@@ -34,19 +34,17 @@ Author: Ralph Mor, X Consortium
#include "ICElibint.h"
int
-IceRegisterForProtocolSetup (protocolName, vendor, release,
- versionCount, versionRecs, authCount, authNames, authProcs, IOErrorProc)
-
-char *protocolName;
-char *vendor;
-char *release;
-int versionCount;
-IcePoVersionRec *versionRecs;
-int authCount;
-const char **authNames;
-IcePoAuthProc *authProcs;
-IceIOErrorProc IOErrorProc;
-
+IceRegisterForProtocolSetup (
+ char *protocolName,
+ char *vendor,
+ char *release,
+ int versionCount,
+ IcePoVersionRec *versionRecs,
+ int authCount,
+ const char **authNames,
+ IcePoAuthProc *authProcs,
+ IceIOErrorProc IOErrorProc
+)
{
_IcePoProtocol *p;
int opcodeRet, i;
@@ -133,24 +131,20 @@ IceIOErrorProc IOErrorProc;
int
-IceRegisterForProtocolReply (protocolName, vendor, release,
- versionCount, versionRecs, authCount, authNames, authProcs,
- hostBasedAuthProc, protocolSetupProc, protocolActivateProc,
- IOErrorProc)
-
-char *protocolName;
-char *vendor;
-char *release;
-int versionCount;
-IcePaVersionRec *versionRecs;
-int authCount;
-const char **authNames;
-IcePaAuthProc *authProcs;
-IceHostBasedAuthProc hostBasedAuthProc;
-IceProtocolSetupProc protocolSetupProc;
-IceProtocolActivateProc protocolActivateProc;
-IceIOErrorProc IOErrorProc;
-
+IceRegisterForProtocolReply (
+ char *protocolName,
+ char *vendor,
+ char *release,
+ int versionCount,
+ IcePaVersionRec *versionRecs,
+ int authCount,
+ const char **authNames,
+ IcePaAuthProc *authProcs,
+ IceHostBasedAuthProc hostBasedAuthProc,
+ IceProtocolSetupProc protocolSetupProc,
+ IceProtocolActivateProc protocolActivateProc,
+ IceIOErrorProc IOErrorProc
+)
{
_IcePaProtocol *p;
int opcodeRet, i;
diff --git a/src/replywait.c b/src/replywait.c
index e00eb92..4e9ee16 100644
--- a/src/replywait.c
+++ b/src/replywait.c
@@ -35,11 +35,10 @@ Author: Ralph Mor, X Consortium
void
-_IceAddReplyWait (iceConn, replyWait)
-
-IceConn iceConn;
-IceReplyWaitInfo *replyWait;
-
+_IceAddReplyWait (
+ IceConn iceConn,
+ IceReplyWaitInfo *replyWait
+)
{
/*
* Add this replyWait to the end of the list (only if the
@@ -77,11 +76,10 @@ IceReplyWaitInfo *replyWait;
IceReplyWaitInfo *
-_IceSearchReplyWaits (iceConn, majorOpcode)
-
-IceConn iceConn;
-int majorOpcode;
-
+_IceSearchReplyWaits (
+ IceConn iceConn,
+ int majorOpcode
+)
{
/*
* Return the first replyWait in the list with the given majorOpcode
@@ -101,11 +99,10 @@ int majorOpcode;
void
-_IceSetReplyReady (iceConn, replyWait)
-
-IceConn iceConn;
-IceReplyWaitInfo *replyWait;
-
+_IceSetReplyReady (
+ IceConn iceConn,
+ IceReplyWaitInfo *replyWait
+)
{
/*
* The replyWait specified has a reply ready.
@@ -123,11 +120,10 @@ IceReplyWaitInfo *replyWait;
Bool
-_IceCheckReplyReady (iceConn, replyWait)
-
-IceConn iceConn;
-IceReplyWaitInfo *replyWait;
-
+_IceCheckReplyReady (
+ IceConn iceConn,
+ IceReplyWaitInfo *replyWait
+)
{
_IceSavedReplyWait *savedReplyWait = iceConn->saved_reply_waits;
_IceSavedReplyWait *prev = NULL;
diff --git a/src/setauth.c b/src/setauth.c
index 8ed9cef..e20af09 100644
--- a/src/setauth.c
+++ b/src/setauth.c
@@ -60,11 +60,10 @@ IceAuthDataEntry _IcePaAuthDataEntries[ICE_MAX_AUTH_DATA_ENTRIES] = {0};
void
-IceSetPaAuthData (numEntries, entries)
-
-int numEntries;
-IceAuthDataEntry *entries;
-
+IceSetPaAuthData (
+ int numEntries,
+ IceAuthDataEntry *entries
+)
{
/*
* _IcePaAuthDataEntries should really be a linked list.
diff --git a/src/shutdown.c b/src/shutdown.c
index 5c957c7..e928be2 100644
--- a/src/shutdown.c
+++ b/src/shutdown.c
@@ -37,11 +37,10 @@ Author: Ralph Mor, X Consortium
Status
-IceProtocolShutdown (iceConn, majorOpcode)
-
-IceConn iceConn;
-int majorOpcode;
-
+IceProtocolShutdown (
+ IceConn iceConn,
+ int majorOpcode
+)
{
if (iceConn->proto_ref_count == 0 || iceConn->process_msg_info == NULL ||
majorOpcode < 1 || majorOpcode > _IceLastMajorOpcode)
@@ -87,11 +86,10 @@ int majorOpcode;
void
-IceSetShutdownNegotiation (iceConn, negotiate)
-
-IceConn iceConn;
-Bool negotiate;
-
+IceSetShutdownNegotiation (
+ IceConn iceConn,
+ Bool negotiate
+)
{
iceConn->skip_want_to_close = negotiate ? False : True;
}
@@ -99,10 +97,9 @@ Bool negotiate;
Bool
-IceCheckShutdownNegotiation (iceConn)
-
-IceConn iceConn;
-
+IceCheckShutdownNegotiation (
+ IceConn iceConn
+)
{
return (iceConn->skip_want_to_close ? False : True);
}
@@ -110,10 +107,9 @@ IceConn iceConn;
IceCloseStatus
-IceCloseConnection (iceConn)
-
-IceConn iceConn;
-
+IceCloseConnection (
+ IceConn iceConn
+)
{
int refCountReachedZero;
IceCloseStatus status;
@@ -253,10 +249,9 @@ IceConn iceConn;
void
-_IceFreeConnection (iceConn)
-
-IceConn iceConn;
-
+_IceFreeConnection (
+ IceConn iceConn
+)
{
if (iceConn->listen_obj == NULL)
{
diff --git a/src/watch.c b/src/watch.c
index ec90d78..00897ee 100644
--- a/src/watch.c
+++ b/src/watch.c
@@ -35,11 +35,10 @@ Author: Ralph Mor, X Consortium
Status
-IceAddConnectionWatch (watchProc, clientData)
-
-IceWatchProc watchProc;
-IcePointer clientData;
-
+IceAddConnectionWatch (
+ IceWatchProc watchProc,
+ IcePointer clientData
+)
{
/*
* watchProc will be called each time an ICE connection is
@@ -94,11 +93,10 @@ IcePointer clientData;
void
-IceRemoveConnectionWatch (watchProc, clientData)
-
-IceWatchProc watchProc;
-IcePointer clientData;
-
+IceRemoveConnectionWatch (
+ IceWatchProc watchProc,
+ IcePointer clientData
+)
{
_IceWatchProc *currWatchProc = _IceWatchProcs;
_IceWatchProc *prevWatchProc = NULL;
@@ -135,10 +133,9 @@ IcePointer clientData;
void
-_IceConnectionOpened (iceConn)
-
-IceConn iceConn;
-
+_IceConnectionOpened (
+ IceConn iceConn
+)
{
_IceWatchProc *watchProc = _IceWatchProcs;
@@ -170,10 +167,9 @@ IceConn iceConn;
void
-_IceConnectionClosed (iceConn)
-
-IceConn iceConn;
-
+_IceConnectionClosed (
+ IceConn iceConn
+)
{
_IceWatchProc *watchProc = _IceWatchProcs;