Re: How to trace the send() in client call

2014-06-03 Thread Robert Clove
Actually what i want to trace is what all netfilter calls the packet trace till it reach destination. Will strace do that because i just ran the strace with client and the server sample program http://www.codeproject.com/Articles/586000/Networking-and-Socket-programming-tutorial-in-C For the clien

Re: How to trace the send() in client call

2014-05-27 Thread Augusto Mecking Caringi
On Tue, May 27, 2014 at 8:31 AM, Robert Clove wrote: > But there will be other packets also coming from the network like if some > one is browsing the net on mozilla. > I only want to trace the send() calls that i have used in my code,is that > possible? > Robert, You must specify the PID o

Re: How to trace the send() in client call

2014-05-27 Thread Robert Clove
Hi Augusto, But there will be other packets also coming from the network like if some one is browsing the net on mozilla. I only want to trace the send() calls that i have used in my code,is that possible? Regards On Tue, May 27, 2014 at 3:49 AM, Augusto Mecking Caringi < augustocari...@gmai

Re: How to trace the send() in client call

2014-05-26 Thread Augusto Mecking Caringi
On Mon, May 26, 2014 at 1:48 PM, Robert Clove wrote: > Hi All, > > I need your help. > I have written the client server program in which client is sending the > packets to the server. > I want to trace the "send()" that is used in the client program actually > want to trace the system call the p

How to trace the send() in client call

2014-05-26 Thread Robert Clove
Hi All, I need your help. I have written the client server program in which client is sending the packets to the server. I want to trace the "send()" that is used in the client program actually want to trace the system call the packet traverses . How to trace ? Regards _