Hi,
Is there a wide character version of WSABUF structure in winsock?
I want to write Japanese data on the socket.
|
|
Hi, Is there a wide character version of WSABUF structure in winsock? I want to write Japanese data on the socket.
|
||
|
|
|
|
Probably not. You most likely need to convert your wide character string into some other format, such as UTF7 or something, and send that over the wire then convert back on the other side. |
||||
|
|
|
You'll need to treat WSABUF as a generic data buffer. "char" is used because C/C++ doesn't have a Byte type. A bit of C++ can fix your problem:
|
||||
|
|
|
As another answer states, TCP provides a stream of bytes it's up to you to decide what those bytes consist of. So, as long as you're providing some kind of protocol framing so that you can read the correct amount of data at the far end, just cast your wide string to a If you were to follow your question through to its logical conclusion you'd next be asking where the |
||
|
|