Tomato 1.26 beta (1786)
[tomato.git] / release / src / router / pptp-client / ChangeLog
blobdf44784dff68cd62b6be534ec5588faf12835cd7
1 Mon Mar 11 10:21:00 2002  mulix  <mulix@actcom.co.il>
3         * Makefile (all): make config.h before making $(PPTP_BIN). 
4         * Makefile (config.h): truncate the file if it exists before
5         inputing to it - '>' instead of '>>'
7 Mon Mar 11 12:48:16 2002  James Cameron  <quozl@us.netrek.org>
9         * DEVELOPERS: add mailing lists.
10         * Makefile (CFLAGS): remove PPPD_BINARY and PPTP_LINUX_VERSION in
11         favour of a config.h file.
12         * Makefile (config.h): create config.h from Makefile variables
13         * Makefile (PPTP_DEPS): add config.h
14         * pptp.c: include config.h
15         * version.c: include config.h
16         * util.c (PROGRAM_NAME): no longer used by two programs, change
17         PROGRAM_NAME to default to pptp.
18         * Makefile (CFLAGS): remove -DPROGRAM_NAME
20 Fri Mar  8 11:56:00 2002  mulix  <mulix@actcom.co.il>
22         * TODO: remove notes about compiler warnings, as all compiler
23         warnings are now gone.
24         * pptp.c (main): add volatile qualifier to some variables to
25         silence gcc warnings 'variable might be clobbered by longjmp or
26         vfork'. add note explaining why volatile and that it should be
27         removed when the longjmp is removed.
28         * pptp_callmgr.c (main): likewise. 
29         * inststr.c (inststr): break up "ptr += strlen(++ptr)" which is
30         undefined behaviour into two expressions. 
31         * pptp.c (main): initialize callmgr_sock to -1 since it might be
32         used uninitialized otherwise. 
33         * pptp_ctrl.c (pptp_dispatch_ctrl_packet): #ifdef 0 two unused
34         variables referring to the current packet, which should not be
35         simply erased, as we might want to use them in the future.
36         * util.c: add missing #include. 
37         
38 Fri Mar  8 21:11:17 2002  James Cameron  <quozl@us.netrek.org>
40         * DEVELOPERS: new file.
42 Fri Mar  8 10:12:28 2002  James Cameron  <quozl@us.netrek.org>
44         * NEWS: convert to newest first format to comply with GNU Coding
45         Standards, The NEWS File.
47 Fri Mar  8 09:01:22 2002  James Cameron  <quozl@us.netrek.org>
49         * pptp_ctrl.c (pptp_make_packet): Cisco PIX is generating a
50         non-complaint header with the reserved0 field not zero, causing
51         the connection to stop after 60 seconds.
52         From: Rein Klazes <rklazes@xs4all.nl>
54 Fri Mar  8 08:56:30 2002  James Cameron  <quozl@us.netrek.org>
56         * TODO: add compiler warnings note.
57         * NEWS: propogate summary of ChangeLog.
58         * AUTHORS: add names from mailing list contributions.
59         From: Rein Klazes <rklazes@xs4all.nl>
60         * Makefile: remove pptp_callmgr binary
61         * debian/copyright: adjust pointer to current release.
62         * debian/rules, Makefile: remove pptp_callmgr binary now that pptp
63         forks and calls it without exec.
65 Sat Mar  2 04:04:37 2002  James Cameron  <quozl@us.netrek.org>
67         * README: adopt new mailing lists and point to project web site.
68         * USING: include psuedo-tty activation instructions.
69         * Makefile: increment version, avoid clobbering editor backup
70         files on clean.
72 Fri Mar  1 12:13:03 2002  James Cameron  <quozl@us.netrek.org>
74         * pptp_gre.c: move #include <sys/types.h> higher up
75         * pptp_gre.c, pptp_ctrl.c: change unsigned to unsigned int
76         * pptp.c: what we need from pty.h is in libutil.h for FreeBSD and
77         util.h for NetBSD (ideally this should be in autoconf)
78         * pptp.c: synchronisation changes
79         * orckit_quirks.c: #include <sys/types.h>
80         From: rhialto@azenomei.knuffel.net
82 Fri Nov 23 14:42:07 2001  James Cameron  <quozl@us.netrek.org>
84         * USING: reformat, add version header.
86 Tue Nov 20 11:01:10 2001  mulix  <mulix@actcom.co.il>
88         * AUTHORS: add mulix.
89         * USING: add paragraph on quirks support.
90         * orckit_quirks.c: remove debugging call, rename functions and
91         variables consistently.
92         * pptp.c: (usage) remove debugging print.
93         * pptp_ctrl.c: when calling quirks hooks, check their return
94         values and warn if an error occurs.
95         * pptp_quirks.c: orckit_atur3_start_ctrl_conn was renamed
96         orckit_atur3_start_ctrl_conn_hook.
97         From: mulix@actcom.co.il
99 Tue Nov 20 17:01:10 2001  James Cameron  <quozl@us.netrek.org>
101         * orckit_quirks.c, orckit_quirks.h: add quirks handling for orckit
102         adsl modems.
103         * pptp_quirks.c, pptp_quirks.h: add generic quirks handling.
104         * Makefile (PPTP_DEPS, PPTP_OBJS, CALLMGR_OBJS, CALLMGR_DEPS): add
105         quirks sources and objects.
106         * pptp_ctrl.c: add pptp_set_link, add code to adjust packets
107         depending on quirks.
108         * pptp.c (usage, long_options, main): add --quirks command line
109         option.
110         From: mulix@actcom.co.il
112 Tue Nov 20 16:45:35 2001  James Cameron  <quozl@us.netrek.org>
114         * pptp_gre.c: enhance error message for bad FCS.