top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to solve UDP packet drop issues between different internal processes in Linux environment ?

+1 vote
305 views

How to solve UDP packet drop issues between different internal processes in Linux environment ?

posted Sep 10, 2015 by Sourav Mondal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
As you have mentioned you are using UDP for internal process of a system, so are you using which family type is it unix domain or internet domain, you can use Unix domain as you are communicating with in the system, so the drop rate will decrease.

1 Answer

0 votes

Say you have two process running under the same Linux system and using UDP for the communication. The most obvious case for the packet loss is socket buffer size.

Say one process is sending at 10mbps and other is receiving at 5mbps so buffers will get full after sometime and packets will get dropped.

This I am just making a guess as a obvious problem, just try to adjust the send and recv buffer size both and see the impact...

answer Sep 10, 2015 by Salil Agrawal
Similar Questions
+1 vote

I am a newbie and using fedora machine, please help with point by point C programming setup.

+2 votes

In linux system how can I implement a linklist to communicate between two processes?

+5 votes

Josephus Problem talks about a problem where there are people standing in a circle waiting to be executed. The counting out begins at some point in the circle and proceeds around the circle in a fixed direction. In each step, a certain number of people are skipped and the next person is executed. The elimination proceeds around the circle (which is becoming smaller and smaller as the executed people are removed), until only the last person remains, who is given freedom.

+2 votes

write functions to read and write in a hash table in a multi threaded environment. Approach should give decent optimization in terms of time complexity.

+2 votes

Please share a sample program with detail code.

...