diff --git a/pvAccessApp/remote/codec.cpp b/pvAccessApp/remote/codec.cpp index 9698e8c..88a1fcf 100644 --- a/pvAccessApp/remote/codec.cpp +++ b/pvAccessApp/remote/codec.cpp @@ -693,7 +693,6 @@ namespace epics { if (_lastSegmentedMessageType == 0) { std::size_t flagsPosition = _lastMessageStartPosition + 2; - std::cout << "peek at " << flagsPosition << " " << _lastMessageStartPosition << std::endl; epics::pvData::int8 type = _sendBuffer->getByte(flagsPosition); // set first segment bit _sendBuffer->putByte(flagsPosition, (type | 0x10)); @@ -1273,7 +1272,6 @@ namespace epics { & (~(PVA_ALIGNMENT - 1)))), sendBufferSize), _channel(channel) { - // get remote address osiSocklen_t saSize = sizeof(sockaddr); int retval = getpeername(_channel, &(_socketAddress.sa), &saSize); diff --git a/pvAccessApp/remote/codec.h b/pvAccessApp/remote/codec.h index bcc034c..5f48f32 100644 --- a/pvAccessApp/remote/codec.h +++ b/pvAccessApp/remote/codec.h @@ -441,7 +441,6 @@ namespace epics { void internalDestroy(); - private: SOCKET _channel; osiSockAddr _socketAddress; }; @@ -658,7 +657,6 @@ namespace epics { Context::shared_pointer _context; - osiSockAddr _socketAddress; IntrospectionRegistry _incomingIR; IntrospectionRegistry _outgoingIR;