History log of /external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
d218f348c12b42a78fa0306d9a033bfa4f67238b 23-Sep-2014 Cyril Hrubis <chrubis@suse.cz> Remove useless malloc() casts.

Created with coccinelle patch:

@@
expression E1, E2;
type T;
@@
- E1 = (T)malloc(E2)
+ E1 = malloc(E2)

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
354ebb48db8e66a853a58379a4808d5dcd1ceac3 07-Dec-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> cleanup code indent

Cleanup the code indent using:

find . -name *.c -exec Lindent {} \;

It's really a big change, but can fix almost all of
the indent problem in C code, although we can't
ensure all of the changes are right, but the error
changes are really few.

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
4548c6cf9bcdd96d8303caa4130ab638b61f8a30 19-Oct-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> Update FSF address

find . -type f -exec sed -i 's/675 Mass Ave, Cambridge, MA 02139, USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;
find . -type f -exec sed -i 's/59 Temple Place, Suite 330, Boston, MA 02111-1307 USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
ec6edca7aa42b6affd989ef91b5897f96795e40f 18-Oct-2012 Chris Dearman <chris@mips.com> Add missing newline at end of file

This is a scripted change done using the following command:

find . -type d -name .git -prune -o \
-type f \! -name \*\~ \! -name .\#\* \
\! -name \*.gz \! -name \*.pdf \! -name \*.patch -print0 | \
xargs -0 sed -i -e '$a\'

Signed-off-by: Chris Dearman <chris@mips.com>
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
2c28215423293e443469a07ae7011135d058b671 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Style and conformance changes.

1. Strip all leading space.
2. Move tst_exit() to main().
3. Remove tst_exit() from cleanup().
4. Remove cluebat comments.
5. Reduce some unnecessary whitespace.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
df3eb16e38c6a163b0a7367c885679eed6140964 29-Nov-2010 Garrett Cooper <yanegomi@gmail.com> Deal with a lot of annoying style nits.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
2c742c7d4c6f02225634537e44baef02889145e0 16-Jul-2007 vapier <vapier> getsockopt() takes a socklen_t, not an int, as its optlen
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
bc59542bedcc20b33df10d36730605aa8e3c52f3 16-Jul-2007 vapier <vapier> Randy Dunlap writes: Fix printf format warnings
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
8af2363347544d3721689a38e5d4823d35952fd2 10-Jul-2006 mreed10 <mreed10> A patch created by Mitsuru Chinen that created some addtional network stress tests.
For broken IP flood, routing table and multicast.
-Address_modify.patch
The patch will replace it to the site-local address (fec0::)

-Missing_break.patch
An break for the for() loop is missing in ns-mcast_join.c.

-Wait_leaving_multicast.patch
After joining a lots of multicast group, the next test
is started although the cleanup is not finished yet.
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
d5e170a2b75fed97362dff1a87a82e6acbff177e 27-Feb-2006 vapier <vapier> fix gcc warnings: warning: int format, different type arg
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c
cd30c339dae692a3eb5c5fc55f70726457f4756b 24-Oct-2005 mridge <mridge> Network stress testcases
/external/ltp/testcases/network/stress/ns-tools/ns-tcpserver.c