Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-06 Thread uknown noname
(e2eDelay - prev_e2eDelay)
 jitter2 += abs(delay-prev_delay)
}
prev_delay = delay
prev_e2eDelay = e2eDelay
   }
   prev_time = recvTime[i]
  }
  processed++
 }
}
  END {
   
   printf(Jitter1 = %.2f\n,jitter1*1000/tmp_recv);
   printf(Jitter2 = %.2f\n,jitter2*1000/tmp_recv);
}
  function abs(value) {
 if (value  0) value = 0-value
 return value
}


# === end 


-Original Message-
From: [EMAIL PROTECTED] on behalf of Sayeed Ahmed
Sent: Tue 04/09/2007 4:56 PM
To: JEHD MAHDI; ns2 mailing
Subject: Re: [ns] cbr packet loss  or packet count scripts in perl
 

Hi,
   
  Hi there I've got a script to analyse packets awk file
   
  Can you please tell from where you get the awk script example I will help 
me a lot.
   
  Thanking you,
   
  Sayeed.
  

JEHD MAHDI  wrote:
  




J Mahdi
Newcastle Upon Tyne
**
My favourite sites:
www.al-islam.com
www.islamspirit.com 
www.troid.org 



From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet loss  or packet count 
scripts in perlDate: Sun, 2 Sep 2007 17:36:47 +


Hi there I've got a script to analyse packets awk file, but it doesn't work, 
but i know that perl scripts would work, any one could help with a similar one 
in perl...cheers


J Mahdi
Newcastle Upon Tyne
**


Are you the Quizmaster? Play BrainBattle with a friend now! 
_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE


   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!






My system :
FC 6
2.6.18-1.2869.fc6
ns2.30
   
-
Need a vacation? Get great deals to amazing places on Yahoo! Travel. 


Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-06 Thread uknown noname
 = prev_delay = processed = 0
 prev_delay = -1
 for (i=0; processed
  if(recvTime[i] != 0) {
  tmp_recv++
   if(prev_time != 0) {
delay = recvTime[i] - prev_time
e2eDelay = recvTime[i] - sendTime[i]
if(delay  0) delay = 0
if(prev_delay != -1) {
 jitter1 += abs(e2eDelay - prev_e2eDelay)
 jitter2 += abs(delay-prev_delay)
}
prev_delay = delay
prev_e2eDelay = e2eDelay
   }
   prev_time = recvTime[i]
  }
  processed++
 }
}
  END {
   
   printf(Jitter1 = %.2f\n,jitter1*1000/tmp_recv);
   printf(Jitter2 = %.2f\n,jitter2*1000/tmp_recv);
}
  function abs(value) {
 if (value  0) value = 0-value
 return value
}


# === end 


-Original Message-
From: [EMAIL PROTECTED] on behalf of Sayeed Ahmed
Sent: Tue 04/09/2007 4:56 PM
To: JEHD MAHDI; ns2 mailing
Subject: Re: [ns] cbr packet loss  or packet count scripts in perl
 

Hi,
   
  Hi there I've got a script to analyse packets awk file
   
  Can you please tell from where you get the awk script example I will help 
me a lot.
   
  Thanking you,
   
  Sayeed.
  

JEHD MAHDI  wrote:
  




J Mahdi
Newcastle Upon Tyne
**
My favourite sites:
www.al-islam.com
www.islamspirit.com 
www.troid.org 



From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet loss  or packet count 
scripts in perlDate: Sun, 2 Sep 2007 17:36:47 +


Hi there I've got a script to analyse packets awk file, but it doesn't work, 
but i know that perl scripts would work, any one could help with a similar one 
in perl...cheers


J Mahdi
Newcastle Upon Tyne
**


Are you the Quizmaster? Play BrainBattle with a friend now! 
_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE


   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!






My system :
FC 6
2.6.18-1.2869.fc6
ns2.30
   
-
Need a vacation? Get great deals to amazing places on Yahoo! Travel. 



My system :
FC 6
2.6.18-1.2869.fc6
ns2.30
   
-
Choose the right car based on your needs.  Check out Yahoo! Autos new Car 
Finder tool.


Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-05 Thread Julian Monteiro

ops, the link was splitted, here it goes again:

http://fly.ath.cx/mobidyn/software

On Sep 5, 2007, at 1:12 AM, Julian Monteiro wrote:


 Hello Sayeed,

 I've another awk NS2 trace file analyzer here:  http://fly.ath.cx/
 mobidyn
 (download the genstats11.awk)

 Best regards,
 Julian

 On Sep 4, 2007, at 12:56 PM, Sayeed Ahmed wrote:


 Hi,

 Hi there I've got a script to analyse packets awk file

   Can you please tell from where you get the awk script example
 I will help me a lot.

   Thanking you,

   Sayeed.


 JEHD MAHDI [EMAIL PROTECTED] wrote:





 J Mahdi
 Newcastle Upon Tyne
 **
 My favourite sites:
 www.al-islam.com
 www.islamspirit.com
 www.troid.org



 From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet
 loss  or packet count scripts in perlDate: Sun, 2 Sep 2007
 17:36:47 +


 Hi there I've got a script to analyse packets awk file, but it
 doesn't work, but i know that perl scripts would work, any one
 could help with a similar one in perl...cheers


 J Mahdi
 Newcastle Upon Tyne
 **


 Are you the Quizmaster? Play BrainBattle with a friend now!
 _
 Discover the new Windows Vista
 http://search.msn.com/results.aspx?q=windows+vistamkt=en- 
 USform=QBRE



 -
 Shape Yahoo! in your own image.  Join our Network Research Panel
 today!




Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-04 Thread Sayeed Ahmed

Hi,
   
  Hi there I've got a script to analyse packets awk file
   
  Can you please tell from where you get the awk script example I will help 
me a lot.
   
  Thanking you,
   
  Sayeed.
  

JEHD MAHDI [EMAIL PROTECTED] wrote:
  




J Mahdi
Newcastle Upon Tyne
**
My favourite sites:
www.al-islam.com
www.islamspirit.com 
www.troid.org 



From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet loss  or packet count 
scripts in perlDate: Sun, 2 Sep 2007 17:36:47 +


Hi there I've got a script to analyse packets awk file, but it doesn't work, 
but i know that perl scripts would work, any one could help with a similar one 
in perl...cheers


J Mahdi
Newcastle Upon Tyne
**


Are you the Quizmaster? Play BrainBattle with a friend now! 
_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE


   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!


Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-04 Thread Mohammad Haseeb Zafar
*1000/tmp_recv);
}
  function abs(value) {
 if (value  0) value = 0-value
 return value
}


# === end 


-Original Message-
From: [EMAIL PROTECTED] on behalf of Sayeed Ahmed
Sent: Tue 04/09/2007 4:56 PM
To: JEHD MAHDI; ns2 mailing
Subject: Re: [ns] cbr packet loss  or packet count scripts in perl
 

Hi,
   
  Hi there I've got a script to analyse packets awk file
   
  Can you please tell from where you get the awk script example I will help 
me a lot.
   
  Thanking you,
   
  Sayeed.
  

JEHD MAHDI [EMAIL PROTECTED] wrote:
  




J Mahdi
Newcastle Upon Tyne
**
My favourite sites:
www.al-islam.com
www.islamspirit.com 
www.troid.org 



From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet loss  or packet count 
scripts in perlDate: Sun, 2 Sep 2007 17:36:47 +


Hi there I've got a script to analyse packets awk file, but it doesn't work, 
but i know that perl scripts would work, any one could help with a similar one 
in perl...cheers


J Mahdi
Newcastle Upon Tyne
**


Are you the Quizmaster? Play BrainBattle with a friend now! 
_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE


   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!





Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-04 Thread Julian Monteiro

Hello Sayeed,

I've another awk NS2 trace file analyzer here:  http://fly.ath.cx/ 
mobidyn
(download the genstats11.awk)

Best regards,
Julian

On Sep 4, 2007, at 12:56 PM, Sayeed Ahmed wrote:


 Hi,

 Hi there I've got a script to analyse packets awk file

   Can you please tell from where you get the awk script example  
 I will help me a lot.

   Thanking you,

   Sayeed.


 JEHD MAHDI [EMAIL PROTECTED] wrote:





 J Mahdi
 Newcastle Upon Tyne
 **
 My favourite sites:
 www.al-islam.com
 www.islamspirit.com
 www.troid.org



 From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet  
 loss  or packet count scripts in perlDate: Sun, 2 Sep 2007  
 17:36:47 +


 Hi there I've got a script to analyse packets awk file, but it  
 doesn't work, but i know that perl scripts would work, any one  
 could help with a similar one in perl...cheers


 J Mahdi
 Newcastle Upon Tyne
 **


 Are you the Quizmaster? Play BrainBattle with a friend now!
 _
 Discover the new Windows Vista
 http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE



 -
 Shape Yahoo! in your own image.  Join our Network Research Panel  
 today!



Re: [ns] cbr packet loss or packet count scripts in perl

2007-09-03 Thread JEHD MAHDI





J Mahdi
Newcastle Upon Tyne
**
My favourite sites:
www.al-islam.com
www.islamspirit.com 
www.troid.org 
 


From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: cbr packet loss  or packet count 
scripts in perlDate: Sun, 2 Sep 2007 17:36:47 +


Hi there I've got a script to analyse packets awk file, but it doesn't work, 
but i know that perl scripts would work, any one could help with a similar one 
in perl...cheers


J Mahdi
Newcastle Upon Tyne
**
 

Are you the Quizmaster? Play BrainBattle with a friend now! 
_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE


[ns] cbr packet loss or packet count scripts in perl

2007-09-02 Thread JEHD MAHDI


Hi there I've got a script to analyse packets awk file, but it doesn't work, 
but i know that perl scripts would work, any one could help with a similar one 
in perl...cheers


J Mahdi
Newcastle Upon Tyne
**
 
_
Get free emoticon packs and customisation from Windows Live. 
http://www.pimpmylive.co.uk