fixed gnu warnings

This commit is contained in:
Jeff Hill
1999-10-28 19:00:34 +00:00
parent 1a25db8776
commit f90b223a28
3 changed files with 8 additions and 32 deletions
+4 -2
View File
@@ -35,8 +35,10 @@
// inBuf::inBuf()
//
inBuf::inBuf (bufSizeT bufSizeIn, bufSizeT ioMinSizeIn) :
bufSize (bufSizeIn), ioMinSize (ioMinSizeIn),
bytesInBuffer (0u), nextReadIndex (0u),
bufSize (bufSizeIn),
bytesInBuffer (0u),
nextReadIndex (0u),
ioMinSize (ioMinSizeIn),
ctxRecursCount (0u)
{
if (this->ioMinSize==0) {
+2 -2
View File
@@ -33,9 +33,9 @@ private:
//
casIntfOS::casIntfOS (caServerI &casIn, const caNetAddr &addrIn,
bool autoBeaconAddr, bool addConfigBeaconAddr) :
casIntfIO (addrIn),
casDGIntfOS (casIn, addrIn, autoBeaconAddr, addConfigBeaconAddr),
cas (casIn),
casIntfIO (addrIn)
cas (casIn)
{
this->setNonBlocking();
+2 -28
View File
@@ -5,32 +5,6 @@
//
//
//
// $Log$
// Revision 1.8 1999/09/02 21:50:27 jhill
// o changed UDP to non-blocking IO
// o cleaned up (consolodated) UDP interface class structure
//
// Revision 1.7 1998/06/18 00:11:09 jhill
// use ipAddrToA
//
// Revision 1.6 1998/06/16 02:35:51 jhill
// use aToIPAddr and auto attach to winsock if its a static build
//
// Revision 1.5 1998/05/29 20:08:21 jhill
// use new sock ioctl() typedef
//
// Revision 1.4 1998/02/05 23:11:16 jhill
// use osiSock macros
//
// Revision 1.3 1997/06/13 09:16:15 jhill
// connect proto changes
//
// Revision 1.2 1997/04/10 19:40:33 jhill
// API changes
//
// Revision 1.1 1996/11/02 01:01:41 jhill
// installed
//
//
#include "server.h"
@@ -45,8 +19,8 @@ const unsigned caServerConnectPendQueueSize = 5u;
// casIntfIO::casIntfIO()
//
casIntfIO::casIntfIO (const caNetAddr &addrIn) :
addr (addrIn.getSockIP()),
sock (INVALID_SOCKET)
sock (INVALID_SOCKET),
addr (addrIn.getSockIP())
{
int yes = TRUE;
int status;