예제 #1
0
파일: connection.hpp 프로젝트: ablochs/fix8
	/*! Write a string message to the underlying socket.
	    \param from Message (string) to write
	    \param sz number bytes to send
	    \return number of bytes written */
	int send(const char *from, size_t sz) { return _writer.send(from, sz); }
예제 #2
0
파일: connection.hpp 프로젝트: ablochs/fix8
	/*! Write a string message to the underlying socket.
	    \param from Message (string) to write
	    \return number of bytes written */
	int send(const f8String& from) { return _writer.send(from.data(), from.size()); }
예제 #3
0
파일: connection.hpp 프로젝트: zouf/fix8
	/*! Write a string message to the underlying socket.
	    \param from Message (string) to write
	    \return number of bytes written */
	int send(const f8String& from) { return _writer.send(from); }