send( _In_ SOCKET s, _In_reads_bytes_(len) const char FAR * buf, _In_ int len, _In_ int flags );
It is found that when it is converted into multi-byte transmission, the server side will have garbled characters. . .
业精于勤,荒于嬉;行成于思,毁于随。
Does the server follow multi-byte decoding? If you want correct communication results, please ensure that the client and server use the same character encoding and decoding scheme
Does the server follow multi-byte decoding? If you want correct communication results, please ensure that the client and server use the same character encoding and decoding scheme