No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
This is a copy of a post I made in the C# forum. It really is a networking question. Please help me if you can. I have a program that sends out UDP traffic via csharp. The code works in the local LAN. We even got it working to other … | |
I have a program that sends out UDP traffic via the usual way: The Server: [CODE=c#] private IPEndPoint iepSend = null; private IPEndPoint iepSend2 = null; private Socket sendSocket = null; ... sendSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); iepSend = new IPEndPoint(IPAddress.Any, 4203); iepSend2 = new IPEndPoint(IPAddress.Parse("227.40.23.1"), 4203); sendSocket.Bind(iepSend); sendSocket.SetSocketOption(SocketOptionLevel.IP, … |
The End.