aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Sockets.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Sockets.c b/src/Sockets.c
index 5e0dbf9..6c4468e 100644
--- a/src/Sockets.c
+++ b/src/Sockets.c
@@ -106,7 +106,7 @@ static void SocketDestroy(isoSocket *this, isoSocket **list);
static void SocketClose(isoSocket *this);
int Iso_SetupServer(const cGH *GH,isosurfacerGH *myGH,
int dataport, int controlport, int queue_size, int hunt);
-int Iso_ShutdownServer(void);
+void Iso_ShutdownServer(CCTK_ARGUMENTS);
int Iso_Poll(const cGH *GH, long sec, long usec);
int Iso_Read(isoSocket *connection, char *buffer, size_t count);
int IsoWriteDataToClients(const char *metadata,
@@ -252,8 +252,9 @@ int Iso_SetupServer(const cGH *GH,isosurfacerGH *myGH,int dataport, int controlp
Closes all sockets we are interested in.
@enddesc
@@*/
-int Iso_ShutdownServer(void)
+void Iso_ShutdownServer(CCTK_ARGUMENTS)
{
+ DECLARE_CCTK_ARGUMENTS;
SOCKET i;
/* Close all sockets in our active set */