Tagged Questions
3
votes
3answers
567 views
Binding an IP address just works for the first time
I want to make a web request from one of available IP addresses on server so I use this class:
public class UseIP
{
public string IP { get; private set; }
public UseIP(string IP)
{
...
1
vote
3answers
576 views
Problem Trying to unicast packets to available networks
Trying to unicast packets to available networks. There are totally 3 networks. Managed to get packets in only one network.But i am not able to receive the packets in different networks.
using this ...
1
vote
2answers
3k views
Broadcasting UDP message to all the available network cards
I need to send a UDP message to specific IP and Port.
Since there are 3 network cards,
10.1.x.x
10.2.x.x
10.4.x.x
when i send a UDP message,i am receiving the message only in one network ...