removed
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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 );
|
||||
}
|
||||
Reference in New Issue
Block a user