- added 'server' folder - added 'blockingTCPAcceptor.cpp' and 'responseHandlers.cpp' to 'remote' blockingTCP.h: - added 'public' specifier to 'BlockingServerTCPTransport' - added 'BlockingTCPAcceptor' class declaration blockingTCPAcceptor.cpp: - implementation blockingTCPConnector.cpp: - 'sizeof(optval)' -> 'sizeof(int)' remote.h: - enum 'MessageCommands' - added class declarations: * AbstractResponseHandler * AbstractServerResponseHandler * BadResponse * ServerResponseHandler responseHandlers.cpp: - implementation of various response handlers serverContext.h: - dummy implementation growingCircularBuffer.h: - removed empty line
24 lines
272 B
C++
24 lines
272 B
C++
/*
|
|
* serverContext.h
|
|
*
|
|
* Created on: Jan 4, 2011
|
|
* Author: Miha Vitorovic
|
|
*/
|
|
|
|
#ifndef SERVERCONTEXT_H_
|
|
#define SERVERCONTEXT_H_
|
|
|
|
namespace epics {
|
|
namespace pvAccess {
|
|
|
|
|
|
class ServerContextImpl {
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* SERVERCONTEXT_H_ */
|