Re #1993: Minor: cleaned up few more unused files.

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@5615 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Nanang Izzuddin 2017-07-04 05:39:40 +00:00
parent 0e6af12b9e
commit d7395e8c6c
3 changed files with 0 additions and 26 deletions

View File

@ -1 +0,0 @@
# timing.plt # # gnuplot script file for plotting the output generated by srtp_driver -t # # David A. McGrew # Cisco Systems, Inc. # set xrange [0:2500] set term pict "Times-Roman" 9 # # plot authentication-only data # set title "Authentication Only" set ylabel "Megabits per second" set xlabel "Octets in packet" set yrange [0:2000] set output "plot-auth.pict" plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines # # plot encryption-only data # set title "Encryption Only" set ylabel "Megabits per second" set xlabel "Octets in packet" set output "plot-enc.pict" set yrange [0:1200] plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines # # plot encryption and authentication data # set title "Encryption and Authentication" set ylabel "Megabits per second" set xlabel "Octets in packet" set yrange [0:1000] set output "plot-enc-auth.pict" plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 title "TMMH/AES" with lines, "timing.dat" index 7 title "HMAC/AES" with lines

View File

@ -1,10 +0,0 @@
#!/bin/sh
#
# usage: undos <file>
#
# strips CRs from a file - useful when moving DOS-created files
# onto UN*X machines
cat $1 | tr -d "\r" > $1.tmp
mv $1.tmp $1

View File

@ -1,15 +0,0 @@
#!/bin/sh
#
# update.sh
#
# update copyright dates in files
a=`find . -name "*.[ch]"`
for x in $a; do
sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp;
mv $x.tmp $x;
done