0
votes
3answers
10 views

Are there any disadvantgaes of using a part of the datagram in UDP to receive packets sequentially?

The UDP protocol does not guarantee packets being received sequentially, but you could just use part of the datagram for a sequence number. Compared to the guarantee of TCP, is the above solution for ...
0
votes
0answers
4 views

Randomness in wired network simulation in ns-2

I am simulating a dumb-bell shaped wired network topology in ns-2 with ftp and cbr applications at the end-host. I want to add randomness in the simulation for smoothing the analysis result using a ...
0
votes
2answers
59 views

transfer float across network via socket

We have a TCP/IP socket software including a Java client and C++ server. The data across the socket contains numbers, int, float, and char array. The precision of these floats are four digits after ...
-1
votes
0answers
15 views

One server and multiple client using fork () [closed]

I have wrote code for the one server and multiple clients put I have problem when I connect the client to the server. the server got the client the all the client stuck nothing send or receive from ...
-1
votes
0answers
7 views

Cisco 3750X: Determining port priority on SFP module [closed]

I have two 3750 Cisco switches that have two fiber cables/sfp modules hooked up on each. I have installed two new 3750X switches on the rack for the upgrade, and I would like to use these existing ...
1
vote
2answers
30 views

32-bit boundary in IP header [closed]

I am reading about IP headers in TCP illustrated by Richard Stevens. It is mentioned as below In IP header options field is present. The options field always ends on a 32-bit boundary. Pad bytes ...
0
votes
0answers
18 views

is it possible to set up two tun interfaces on the same machine and capture packets from tun interface?

I want to set up 2 tun(3rd layer) virtual interfaces on the same machine, let me say tun1: 10.10.10.1 tun2: 10.10.10.2 I want to run a web server on tun1, so there is a server process listening ...
0
votes
0answers
27 views

Socket.connect explanation [closed]

I am running this code on one linux machine : Socket.connect(<InetSocketAddress>, 20000); and getting java.net.NoRouteToHostException If i see the wireshark capture then below is visible : ...
2
votes
1answer
19 views

Is it possible to determine whether a read from SecureStream will block?

Can I determine whether reading a single byte from a SecureStream will block? The underlying stream is a NetworkStream, which has the DataAvailable property, but I expect that the SecureStream needs ...
1
vote
1answer
51 views

Go package syscall conn.Read() is non-blocking and cause high CPU usage

Strangely, in my case Read() is non-blocking and caused high CPU usage. My code: In function main: l, err := net.Listen("tcp", ":13798") if err != nil { log.Fatal(err) } for { // ...
0
votes
1answer
62 views

Bluetooth send/receive text between windows 7 PC and mobile in c#

i want to automatically find devices around my PC and sent a text message to the new devices (first visited devices) and after their response according to their answer to my message i will sent a file ...
1
vote
2answers
93 views

How to simulate two computers connected with LAN when you have only one computer? [closed]

I wish to test a networking application between two computers connected by LAN. These computers will have different IP addresses. I have only one computer. How to simulate two computers ...
1
vote
0answers
53 views

Remote procedure call in linux

This is my client code cl.c #include "S.h" int main() { CLIENT *cl; cl=clnt_create("127.0.0.1",S_PROG,S_VERS,"tcp"); struct st i,*o;i.a=3; o=square_1(&i,cl); ...
0
votes
2answers
23 views

Sharing directory in network c#

I have to copy files from a distant directory in the same network. i succed to access to this directory : string[] parts = Regex.Split(@directory_path, @"\\"); // l'emplacement de ...
0
votes
1answer
24 views

Convert a float array into little/big endian

I am generating binary files for use in Unit Tests which simulate a network. Some of the data sent through the network is in Little Endian or Big Endian mode and I'd like to simulate that data with ...
2
votes
1answer
95 views

Serialize class missing data

This is driving me mad right now, I am currently writing some client/server software, I can send arrays between clients without a problem but the problem lies in this code here: MemoryStream fs = new ...
-1
votes
2answers
50 views

Why can I ping a web page but not access it through browser? [closed]

I am trying to understand proxy servers, which we have at work. I was wondering, why can I ping a web page but not open it? Surely, pinging needs some interaction between my computer and the web ...
0
votes
0answers
17 views

Speed test with specified host

I want to do speed test with specified host. I know about speedtest.net but using speedtest I can do my test only with the hosts provided by(registered in) speedtest.net. I'm also ok to use some ...
0
votes
1answer
32 views

How to Programmatically Detect if computer is inside a LAN?

I'm coding an application which uses the Gnutella protocol. This software may run in computers which could be in the same LAN. If so, I want to group them together since they have faster ...
0
votes
1answer
18 views

How to Connect To My Server Application which is behind a Firewall/NAT?

I'm doing a project which involves making a server which uses TCP to connect to its clients. In real-life conditions, it could be behind a firewall/nat/proxy. So, how would I establish a connection? ...
0
votes
1answer
26 views

how to close a tcp connection if FIN/ACK doesn't get a ACK response?

in a tcp program written in Linux C I want to close a tcp connectin I used close(sockfd) I notice this function will initiate a FIN/ACK packet to the other peer but if the other peer doesn't respond ...
1
vote
1answer
31 views

is it elegant to continue do connect() if connect() fails or accept() if accept() fails

when using connect() in a tcp client program or accept() in a tcp server program many possible exceptions may happen e.g, TCP SYN or TCP SYN/ACK is lost OR some other errors (BTW, I'm wondering ,if ...
0
votes
1answer
87 views

Get Mapped Network Drives in Windows 8

As noted, I'm on a Windows 8 machine using Visual Studio 2012. I need to map/unmap network drives as well as get a list of all of the currently mapped drives. To map/unmap I'm using ...
1
vote
1answer
39 views

Listen to multicast ranges in Python

This might sound stupid. Pardon my limited knowledge in these stuff. Is it possible to listen to multiple multicast groups, or more precisely, a range of addresses, for e.g. 224.128.*.* ? Usually ...
1
vote
1answer
50 views

What's the difference between IPAddress.Any and IPAddress.IPv6Any fields?

I tried the following code to make my code work in dual stack mode. Unfortunately, it's not opening port in the dual stack mode. var listener = new TcpListener(IPAddress.Any, 2222); ...
-2
votes
0answers
39 views

why some peoples cann't connect to my TCP Socket Server ? [closed]

Good day I have made a TCP relay server and it's well hosted to outside world. Some of my friends connected to It well using the Client application, and Some was unable to connect, And when tried to ...
1
vote
2answers
59 views

What is the best way to keep track of connected clients on TCP?

I wrote a small demo client/server TCP sockets project based off a number of tutorials I found through stack. Currently the the project is blocking, and I dedicate a thread to each client. This is ...
0
votes
0answers
31 views

Why some peoples cann't connect to my TCP Server thought it's available to outside world? [closed]

Good day I have a strange problem with my TCP Server/client , I will explain it below in details. While some peoples can connect to my TCP Server socket, some peoples cann't connect to it, I have ...
0
votes
0answers
30 views

What language and communication tool to use to control a W7 desktop with a Vista or W7 laptop? [closed]

Long title I know, but that's part of the problem I am having, describing my problem. Situation: I am working on a senior design project that uses a National Instruments PXIe- to collect data from an ...
0
votes
1answer
59 views

C++ SDL 2-ways network communication

I am trying to create simple basic communication between client and server, where client should send message to server and server should then send response back. Server: TCPsocket ...
0
votes
0answers
25 views

How to use the B.A.T.M.A.N protocol in a network application?

I intend to build a network of Raspberry Pis. I would like to use the B.A.T.M.A.N protocol for routing purposes. I read its included in the Linux Kernel since 2.6 I would like to know that what do I ...
0
votes
0answers
32 views

How to make apache LAN server using livebox router?

i want my local Apache server become accessible through LAN that connected with Livebox router, i googled about this but i did not find anything that explains why it is not working for me . what i ...
0
votes
0answers
35 views

Which are the Best Resources for the Gnutella P2P protocol?

I'm looking for using the Gnutella P2P protocol for something other than file-sharing. I want to implement distributed processing using it. For that, I need to learn it in detail. Are there any good ...
0
votes
0answers
37 views

which TCP header options are commonly used?

there are many TCP header options that are used in tcp communications Currently I know MSS, SACK, timestamp and window scale are there any other TCP header options are extensively in use? especially ...
0
votes
0answers
28 views

Network Simulator and Lan Connection

I was trying to implement a network simulator but before that I was advised to learn what actually works inside of lan connections. eg. What type of data is sent for the very first time in order to ...
0
votes
2answers
50 views

tcp program can't listen on port 80

I wrote a simple tcp server program and make it listen on port 80 then i notice from netstat -tulpn|grep "tcp" that the tcp server listening port is changed to a random port, but not 80 I tried ...
0
votes
1answer
123 views

Cannot ping/communicate with Android devices on the same network

I have a nexus 7 running CM10.1 . For some reason i cannot reach it from my laptop on the same wifi network. I cannot ping in either direction. In the past i have been only able to ping one way. Just ...
3
votes
4answers
75 views

What is the minimum size of data guaranteed to be sent in a single call of send() (tcp sockets)? [duplicate]

After select returns with write fd set for a tcp socket. If I try to send data on that socket, what is the minimum guaranteed size of data to be sent at once using send api? I understand that I have ...
0
votes
0answers
13 views

Best protocol for finding a new computer to add to a network [closed]

What is the best protocol for finding an unknown computer through wireless communication? The idea is that a computer starts off by itself and then broadcasts "Any other computer close enough to talk ...
0
votes
2answers
47 views

Transmitting data over TCP always stops at 251 transmits

I am transmitting integers over TCP I have been working at getting this to work correctly for a couple days now and I am very close. What I am doing is taking input from a USB joystick and sending the ...
-2
votes
1answer
17 views

Adding delay to user'r traffic [closed]

I have question about delay: can I add delay to user's traffic on user's PC? I don't want change delay on network devices only on PC. I think about firewall...(maybe it has that functionality).
-2
votes
1answer
33 views

a server that is SMTP and POP3 Simultaneity [closed]

i have to write two SMTP mail server in python that can send email to each other and clients of these mail server can check their mails using POP3 but i confused what should i do! because mail server ...
0
votes
0answers
40 views

Write to remote file using TCP

I am working on a server/client program for a project, for it to be able to work properly I need to use fopen and fprintf on the client. The server is going to take realtime data output from a USB ...
0
votes
1answer
54 views

Send commands to a program via WiFi

I am working on a robot that is driven with a normal PC gaming joystick. I have it working excellent right now but the joystick has to always be attached to the robot. The robot is made from a ...
0
votes
1answer
39 views

Error when sending data over network?

I've made a small program that allows a user to remotely control their home computer from any computer that obviously has a internet connection, but i keep getting this error whenever i try to send a ...
0
votes
0answers
64 views

How to write packets from vpn tunnel to pcap file

I used the Android's ToyVpnClient to set up a tunnel and intercept incoming & outgoing packets. I want to write these packets from this tunnel, which is stored in a ByteBuffer, to a pcap file. ...
-2
votes
1answer
26 views

Monitoring URL and Display it in UI with graphs,Charts,etc in Java [closed]

I'm currently working with monitoring url in my project. I want to Manitor My register cliend url are currently working or not,request and response time taken like these things. I want to do this with ...
1
vote
1answer
32 views

UDP server process can't accept packets from kernel

I have a very simple UDP server program #include <sys/socket.h> #include <netinet/in.h> #include <stdio.h> #include <string.h> int main(int argc, ...
1
vote
2answers
100 views

How TCP/UDP demultiplexing works?

I have the following statement. "In TCP, the receiver host uses all of source IP, source port, destination IP and destination port to direct datagram to appropriate socket. While in UDP, the ...
0
votes
0answers
15 views

ns3 Get size of Object?

I am working on a networking project that makes use of the Ns-3 Simulator. I want to know how can we get the size of the object that has been created using CreateObject in Ns-3. eg. ...

1 2 3 4 5 16