No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
how to convert from UDP to TCP? For example I'm used this code for UDP: Socket peer1 = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); UnicodeEncoding coding = new UnicodeEncoding(); byte[] pp = coding.GetBytes(ping); peer1.SendTo(pp, receiverIp); peer1.SendTo(txtBuf, txtBuf.Length, SocketFlags.None, receiverIp); How to write it use TCP protocol??? Because my code is large, I … | |
hello im sending UDP packet with speed(100Mbps) so when i tested on my pc 127.0.0.1 not received all packets ,,,,i said may be for buffer size ...i define buffer size as size of packet from 64 to 1500 byte ,,,,,why the all packets can not received?? please help me | |
Re: hello im sending UDP packet with speed(100Mbps) so when i tested on my pc 127.0.0.1 not received all packets ,,,,i said may be for buffer size ...i define buffer size as size of packet from 64 to 1500 byte ,,,,,why the all packets can not received?? please help me |
The End.