Search Result

Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
network programming
  •  

  • Why data is not available in network stream?

    server side coding

    Code:
     TcpClient dupClient = listener.AcceptTcpClient();
     NetworkStream ns = dupClient.GetStream();
     StreamReader sr = new StreamReader(ns);
     StreamWriter sw = new StreamWriter(ns);
     sw.WriteLine("send");
     string da = sr.ReadLine();
    client side coding

    Code:
    NetworkStream ns = client.GetStream();
     StreamReader sr = new StreamReader(ns);
    ...
    See more | Go to post

  • james457
    started a topic Linux Wireless Network Testbed
    in C

    Linux Wireless Network Testbed

    Hi all,

    I am writing a linux testbed for wireless sensor networks. The core objective is to test data transfer between any two nodes. The network runs using tree topology.
    One node in the network is the "Driver". This node is connected using serial port to a linux PC. What I am trying to write is the software on this linux PC that will drive data transfer in the network.

    The "Driver" node,...
    See more | Go to post
Working...