Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am thinking if it is possible to redirect printf or cout to a socket easily?

I am currently programming in Windows VC++ btw...

share|improve this question

3 Answers

No, but you can use the sprintf family of functions:

// Make sure this buffer is big enough; if the maximum size isn't known, use
// _vscprintf or a dynamically allocated buffer if you want to avoid truncation
char buffer[2048];
_snprintf_s(buffer, sizeof(buffer), _TRUNCATE, "format %s etc.", args...);
send(mySocket, buffer, strlen(buffer)+1, 0);  // +1 for NUL terminator

Note that _snprintf_s is a Microsoft runtime-only function, so if you're writing portable code, use snprintf instead on other platforms.

In C++, you can also use a std::ostringstream for similar results:

std::ostringstream buffer;
buffer << "test: " << myvar << somethingelse << etc;
send(mySocket, buffer.str().c_str(), buffer.str().size() + 1, 0);
                                                     // +1 for NUL terminator
share|improve this answer

Not trivially. In WinSock (MS Windows) world sockets are not the same as file descriptors.

share|improve this answer
Ok, thanks, guess it's just not worth the effort then – user990639 May 8 '12 at 3:18

Linux has dprintf() which allows you to write to a socket file descriptor.

int dprintf(int fd, const char *format, ...);

http://linux.about.com/library/cmd/blcmdl3_dprintf.htm

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.