From b27129b684462f05d1059c58c8584d2a2437e25a Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 7 Sep 2000 01:42:06 +0000 Subject: [PATCH] removed --- src/ca/claimMsgCache.cpp | 41 ------------------------------------- src/ca/claimsPendingIIU.cpp | 38 ---------------------------------- 2 files changed, 79 deletions(-) delete mode 100644 src/ca/claimMsgCache.cpp delete mode 100644 src/ca/claimsPendingIIU.cpp diff --git a/src/ca/claimMsgCache.cpp b/src/ca/claimMsgCache.cpp deleted file mode 100644 index eec4e3bd8..000000000 --- a/src/ca/claimMsgCache.cpp +++ /dev/null @@ -1,41 +0,0 @@ - -/* $Id$ - * - * L O S A L A M O S - * Los Alamos National Laboratory - * Los Alamos, New Mexico 87545 - * - * Copyright, 1986, The Regents of the University of California. - * - * Author: Jeff Hill - */ - -#include "iocinf.h" - -bool claimMsgCache::set ( nciu & chan ) -{ - this->clientId = chan.id; - this->serverId = chan.sid; - if ( this->v44 ) { - unsigned len = strlen ( chan.pNameStr ) + 1u; - if ( this->bufLen < len ) { - unsigned newBufLen = 2 * len; - char *pNewStr = new char [ newBufLen ]; - if ( pNewStr ) { - delete [] this->pStr; - this->pStr = pNewStr; - this->bufLen = newBufLen; - } - else { - return false; - } - } - strcpy ( this->pStr, chan.pNameStr ); - this->currentStrLen = len; - } - else { - this->currentStrLen = 0u; - } - return true; -} - diff --git a/src/ca/claimsPendingIIU.cpp b/src/ca/claimsPendingIIU.cpp deleted file mode 100644 index b64b2b289..000000000 --- a/src/ca/claimsPendingIIU.cpp +++ /dev/null @@ -1,38 +0,0 @@ - -/* $Id$ - * - * L O S A L A M O S - * Los Alamos National Laboratory - * Los Alamos, New Mexico 87545 - * - * Copyright, 1986, The Regents of the University of California. - * - * Author: Jeff Hill - */ - -#include "iocinf.h" -#include "netiiu_IL.h" - -claimsPendingIIU::claimsPendingIIU ( tcpiiu &tcpIIUIn ) : - netiiu ( tcpIIUIn.clientCtx () ), tcpIIU ( tcpIIUIn ) -{ -} - -claimsPendingIIU::~claimsPendingIIU () -{ -} - -const char * claimsPendingIIU::pHostName () const -{ - return this->tcpIIU.pHostName (); -} - -void claimsPendingIIU::hostName ( char *pBuf, unsigned bufLength ) const -{ - this->tcpIIU.hostName ( pBuf, bufLength ); -} - -bool claimsPendingIIU::connectionInProgress ( const char *pChannelName, const osiSockAddr &addr ) const -{ - return this->tcpIIU.connectionInProgress ( pChannelName, addr ); -}