Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~782 People Reached
Favorite Forums
Member Avatar for chi-hawk

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 …

Member Avatar for pmorris1
0
655
Member Avatar for chi-hawk

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, …

Member Avatar for sknake
0
127