Tagged Questions
3
votes
1answer
67 views
Downloading a file using multiple connections and multihoming
I am a student in my fourth year in university. My graduation project is a download manager which i intend to code with C#.
when checked the MSDN documentation the project looked easy. But the problem ...
3
votes
3answers
646 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
599 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 ...