Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-14 | l2tp: Fix allocation checking when adding octets AVP | Guillaume Nault | |
l2tp_packet_add_octets() performs a malloc on the "octets" field of the L2TP attribute, but checks the "string" field for allocation failure. Though these fields should be equivalent in this case, the "octets" field should be logically checked instead of "string". Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-12-14 | cli, tcp: Fix non-NULL terminated string reception | Guillaume Nault | |
NULL terminate commands received in cln_read(). This ensures that the processing loop can safely call strchr(), or any other string handling functions. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-12-14 | Fix va_end() missing calls | Guillaume Nault | |
A few va_start() calls aren't followed by their corresponding va_end(). This patch adds the missing va_end() calls. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-12-07 | 1.7.3 release | Kozlov Dmitry | |
* fixed various bugs in cli * fixed l2tp connection problem from android * implemented chap-secrets encryption * implemented NBNS (WINS) support | |||
2012-12-07 | auth_pap: make messages like other auth modules | Kozlov Dmitry | |
2012-11-27 | cli: check xmit_buf is not null at enter to write function | Kozlov Dmitry | |
2012-11-20 | pppoe: implemented regular expression support | Kozlov Dmitry | |
2012-11-20 | chap-secrets: implemented encryption | Kozlov Dmitry | |
2012-11-16 | ippool: fixed initialization order | Kozlov Dmitry | |
2012-11-16 | optional shaper compiling | Vladislav Grishenko | |
2012-11-16 | ppp: dns/wins code cleanup | Vladislav Grishenko | |
2012-11-12 | Merge branch '1.7' of ↵ | Kozlov Dmitry | |
ssh://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp into 1.7 | |||
2012-11-12 | Fix lcp echo with verbose parameter | Rostyslav Davydenko | |
2012-11-12 | ppp: add NBNS (WINS) support | Vladislav Grishenko | |
2012-11-12 | Revert "ppp: force to send dns" | Kozlov Dmitry | |
This reverts commit 1c89473d04c74e224546c596608f227dcd77518b. | |||
2012-11-03 | pppd_compat: set rpath to locate depending libraries | Kozlov Dmitry | |
2012-11-03 | cli: fix 'show sessions match' without enough arguments | Kozlov Dmitry | |
2012-11-02 | cli: fix double buffer free | Kozlov Dmitry | |
2012-11-01 | cli: terminate username: check for username is not NULL | Kozlov Dmitry | |
2012-11-01 | fix build with glibc-2.16 | Alexei Takaseev | |
2012-11-01 | Merge branch '1.7' of ↵ | Kozlov Dmitry | |
ssh://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp into 1.7 | |||
2012-11-01 | ppp: force to send dns | Kozlov Dmitry | |
2012-09-07 | l2tp: send ZLB when duplicate packet is received and retransmit queue is empty | Kozlov Dmitry | |
2012-09-06 | 1.7.2 release | Kozlov Dmitry | |
* fixed connection dropping when mppe=prefer and user rejects ccp * improved tunnel termination (l2tp) * fixed sending incorrect magic in lcp echo request * fixed various typos * gather interface statistics via netlink | |||
2012-09-05 | add missing netlink library | Kozlov Dmitry | |
2012-09-05 | Fix format string errors | Guillaume Nault | |
Fix several errors and compiler warnings in format string arguments. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-09-05 | Add compilation checks for printf-style format strings | Guillaume Nault | |
Append the format() __attribute__ to function prototypes which use a format string. This allows GCC to check for consistency between the format string and its arguments when these functions are called. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-09-05 | gather interface statistics via netlink | Kozlov Dmitry | |
2012-08-27 | fix various typos | Kozlov Dmitry | |
2012-08-27 | fix typo (successed -> succeeded) | Kozlov Dmitry | |
2012-08-23 | L2TP: Tear down tunnel when peer stops listening | Guillaume Nault | |
Stop sending messages on tunnels for which no peer is listening. Discard retransmissions too. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-08-13 | lcp: fixed sending incorrect magic in lcp echo request | Kozlov Dmitry | |
2012-08-03 | Merge branch '1.7' of ↵ | Kozlov Dmitry | |
ssh://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp into 1.7 | |||
2012-08-03 | l2tp: stop hello timer on session termination | Kozlov Dmitry | |
l2tp: rertansmit last packet if duplicate packet received | |||
2012-08-03 | Merge branch '1.7' of ↵ | Kozlov Dmitry | |
ssh://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp into 1.7 | |||
2012-08-03 | ppp: don't drop connection when mppe=prefer and user rejects ccp | Kozlov Dmitry | |
2012-07-30 | make worker stack size configurable | Kozlov Dmitry | |
2012-07-30 | 1.7.1 release | Kozlov Dmitry | |
* drop compressor settings on session termination * fixed race condition on termination * fixed unexpected lcp timer start * fixed setting of ACCEL_PPP_VERSION with git coloured output * log_file: fixed bug in per user log * pppoe: tag length sanity check * iprange: accept network with null mask (which actually disables iprange module) * l2tp: various fixes * radius: update Class attribute by CoA request * telnet: check for disconnect condition while processing input chars * implemented per-CTRL ip-pool option to specify default ip pool name | |||
2012-07-30 | add per-CTRL ip-pool option to specify default ip pool name | Kozlov Dmitry | |
2012-07-19 | cli: telnet: check for disconnect condition while processing input chars | Kozlov Dmitry | |
2012-07-13 | radius: update Class attribute by CoA request | Kozlov Dmitry | |
2012-07-13 | L2TP: Check for fcntl() errors in l2tp_connect() | Guillaume Nault | |
Add error detection to ensure the FD_CLOEXEC flag gets set for every new socket. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-07-13 | L2TP: Close sockets opened by l2tp_connect() upon failure | Guillaume Nault | |
Centralise error management to ensure full cleanup upon failure. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-07-13 | L2TP: Fix socket() error handling in l2tp_connect() | Guillaume Nault | |
Check if the tunnel file descriptor has been successfully created. Explicitely check for negative values to detect socket() errors. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-07-07 | Merge branch '1.7' of ↵ | Kozlov Dmitry | |
ssh://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp into 1.7 | |||
2012-07-07 | iprange: accept network with null mask (which actually disables iprange module) | Kozlov Dmitry | |
2012-07-07 | pppoe: tag length sanity check | Kozlov Dmitry | |
2012-07-06 | Merge branch '1.7' of ↵ | Kozlov Dmitry | |
ssh://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp into 1.7 | |||
2012-07-06 | log_file: fixed double list deletetion if per user log file creating failed | Kozlov Dmitry | |
2012-07-06 | ppp: drop compressor settings on session initiation | Kozlov Dmitry | |