Skip to content

Commit cb82684

Browse files
committed
1.3 release from Web page
1 parent 970d5de commit cb82684

22 files changed

+3760
-0
lines changed

COPYING

+343
Large diffs are not rendered by default.

ChangeLog

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Sun Dec 12 12:01:15 EST 2004
2+
3+
* add in the code for bandwidth bound estimation (see README for the
4+
example). The following code are changed:
5+
choke.c, get-choke.c, pathneck.c, script/get.pl
6+
7+
Sat Nov 6 15:41:09 EST 2004
8+
9+
* fix the bug in "-c" mode
10+
[thanks Bryant Lai for the bug report]
11+
12+
* release version 1.2
13+
14+
Thu Nov 4 19:23:32 EST 2004
15+
16+
* apply the patch for MAC
17+
[thanks Michael Abd-El-Malek for the patch
18+
& Neil Spring for the testing]
19+
20+
* fix the bug that can show up under "-o" mode
21+
* adjust the output when no measurement is obtained
22+
[thanks Neil Spring for pointing them out]
23+
24+
Fri Aug 27 20:26:39 EDT 2004
25+
26+
* release version 1.1

Makefile

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#****************************************************************************
2+
# Pathneck: locating network path bottlenecks
3+
# Copyright (C) 2004
4+
# Ningning Hu and the Carnegie Mellon University
5+
#
6+
# This program is free software; you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation; either version 2 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License (in the COPYING file) for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program; if not, write to the Free Software
18+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19+
#****************************************************************************
20+
21+
# this file applies to both Linux and MAC
22+
23+
CC = gcc
24+
INCS = -I.
25+
DEFS =
26+
OBJS = get-line.o util.o
27+
OBJS_ALL= $(OBJS) choke.o pathneck.o
28+
29+
CFLAGS = -g -Wall $(DEFS) $(INCS)
30+
LIBS =
31+
32+
.c.o:
33+
@rm -f $@
34+
$(CC) $(CFLAGS) -c $*.c
35+
36+
all: pathneck get-choke
37+
38+
pathneck: $(OBJS_ALL)
39+
@rm -f $@
40+
$(CC) $(CFLAGS) -o $@ $(OBJS_ALL) $(LIBS)
41+
42+
clean:
43+
rm -f *.o pathneck get-choke

Makefile.bsd

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#****************************************************************************
2+
# Pathneck: locating network path bottlenecks
3+
# Copyright (C) 2004
4+
# Ningning Hu and the Carnegie Mellon University
5+
#
6+
# This program is free software; you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation; either version 2 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License (in the COPYING file) for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program; if not, write to the Free Software
18+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19+
#****************************************************************************
20+
21+
CC = gcc
22+
INCS = -I.
23+
DEFS =
24+
OBJS = get-line.o util.o
25+
OBJS_ALL= $(OBJS) choke.o pathneck.o
26+
27+
CFLAGS = -D_BSD -g -Wall $(DEFS) $(INCS)
28+
LIBS =
29+
30+
.c.o:
31+
@rm -f $@
32+
$(CC) $(CFLAGS) -c $*.c
33+
34+
all: pathneck get-choke
35+
36+
pathneck: $(OBJS_ALL)
37+
@rm -f $@
38+
$(CC) $(CFLAGS) -o $@ $(OBJS_ALL) $(LIBS)
39+
40+
#bsd: $(OBJS)
41+
# @rm -f $@
42+
# $(CC) $(CFLAGS_BSD) -c pathneck.c choke.c
43+
# $(CC) $(CFLAGS_BSD) -o get-choke get-choke.c
44+
# $(CC) $(CFLAGS_BSD) -o pathneck $(OBJS) choke.o pathneck.o $(LIBS_BSD)
45+
46+
clean:
47+
rm -f *.o pathneck get-choke

Makefile.sun

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#****************************************************************************
2+
# Pathneck: locating network path bottlenecks
3+
# Copyright (C) 2004
4+
# Ningning Hu and the Carnegie Mellon University
5+
#
6+
# This program is free software; you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation; either version 2 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU General Public License (in the COPYING file) for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with this program; if not, write to the Free Software
18+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19+
#****************************************************************************
20+
21+
CC = gcc
22+
INCS = -I.
23+
DEFS =
24+
OBJS = get-line.o util.o
25+
OBJS_ALL= $(OBJS) choke.o pathneck.o
26+
27+
CFLAGS = -DSUN -g -Wall $(DEFS) $(INCS)
28+
LIBS = -lnsl -lsocket
29+
30+
.c.o:
31+
@rm -f $@
32+
$(CC) $(CFLAGS) -c $*.c
33+
34+
all: pathneck get-choke
35+
36+
pathneck: $(OBJS_ALL)
37+
@rm -f $@
38+
$(CC) $(CFLAGS) -o $@ $(OBJS_ALL) $(LIBS)
39+
40+
clean:
41+
rm -f *.o pathneck get-choke

0 commit comments

Comments
 (0)