Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-05-05 | Fix unused make_connection_string() warning [-Werror=unused-function] | Gaël PORTAY | |
This function is used when USE_VFORK is unset. | |||
2015-05-05 | Fix unused but set variable warnings [-Werror=unused-but-set-variable] | Gaël PORTAY | |
2015-05-05 | Fix unused parameters warnings [-Werror=unused-parameter] | Gaël PORTAY | |
2015-05-05 | Uses abort() instead of raising a SIGABRT signal [-Werror] | Gaël PORTAY | |
error: ‘noreturn’ function does return [-Werror] abort() is a noreturn function while raise() is not. And because crypt_argchk() is flagged as __attribute__(noreturn), abort() appears to be a better condidate. This compilation warning has probably been introduced by commit 1809f741cba865b03d4db5c4ba8c41364a55d6bc. | |||
2015-05-05 | Uses k_size as an signed integer | Gaël PORTAY | |
buf_incrwritepos() and mp_to_unsigned_bin() functions use k_size as signed integer argument. k_size is also used in an assertion that compared it to curve_size which is a signed long. Only buf_getwriteptr() is using k_size as unsigned. So it safe to use it as signed. | |||
2015-05-05 | Test struct existance against sizeof() operator | Gaël PORTAY | |
Instead of declaring an "unused-variable" or "unused-but-set-variable" structure. This avoid unexpected broken configurations when using something like: $ ./configure CFLAGS="-Wall -Wextra -Werror" It causes AC_COMPILE_IFELSE to fail and thus leading to a mismatch configuration (because the CFLAGS are passed to the macro). | |||
2015-05-02 | fix travis more | Matt Johnston | |
2015-05-02 | bad travis syntax | Matt Johnston | |
2015-05-02 | add no-writev build | Matt Johnston | |
2015-05-02 | Fix no-writev fallback | Matt Johnston | |
2015-04-17 | Should be AF_UNSPEC not PF_UNSPEC | Matt Johnston | |
2015-04-14 | fastopen code was totally broken | Matt Johnston | |
2015-03-21 | Avoid channel writev() when there is nothing to write | Matt Johnston | |
2015-03-20 | Make main socket nonblocking. Limit writequeue size. | Matt Johnston | |
2015-03-20 | Fix when iov queue is large | Matt Johnston | |
2015-03-20 | avoid malloc for iovec | Matt Johnston | |
2015-03-16 | dropbear_assert() rather than assert() | Matt Johnston | |
2015-03-11 | strdup strerror | Matt Johnston | |
2015-03-03 | Fix error handling for dbclient async connect | Matt Johnston | |
2015-03-02 | more changes | Matt Johnston | |
2015-03-02 | changes (also testing hg bookmarks) | Matt Johnston | |
2015-03-01 | merge | Matt Johnston | |
2015-03-01 | reword comment for clarity | Matt Johnston | |
--HG-- branch : nocircbuffer | |||
2015-03-01 | Fix pubkey auth after change to reuse ses.readbuf as ses.payload | Matt Johnston | |
(4d7b4c5526c5) --HG-- branch : nocircbuffer | |||
2015-03-01 | Fix some memory leaks in ecc code | Matt Johnston | |
2015-03-01 | allocate buffer and data in a single allocation | Matt Johnston | |
--HG-- branch : nocircbuffer | |||
2015-03-01 | Avoid malloc in hmac | Matt Johnston | |
--HG-- branch : nocircbuffer | |||
2015-03-01 | A bit of a bodge to avoid memcpy if zlib is disabled | Matt Johnston | |
--HG-- branch : nocircbuffer | |||
2015-03-01 | Avoid copying data into circular buffer | Matt Johnston | |
--HG-- branch : nocircbuffer | |||
2015-02-28 | Better failure handling | Matt Johnston | |
2015-02-28 | merge tcp fastopen | Matt Johnston | |
2015-02-28 | Add cleanup | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-28 | merge from default | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-27 | EINPROGRESS for sendmsg() means it's working OK | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-26 | ignore any sendmsg() errors | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-24 | Use m_burn rather than memset | Thorsten Horstmann | |
2015-02-24 | Avoid cppcheck warning | Thorsten Horstmann | |
2015-02-24 | Add more ATTRIB_NORETURN annotations, from Thorsten Horstmann | Matt Johnston | |
2015-02-24 | Revert accidental commented out signal handlers | Matt Johnston | |
2015-02-24 | Some additional cleanup functions | Matt Johnston | |
2015-02-24 | Free memory before exiting. Based on patch from Thorsten Horstmann. | Matt Johnston | |
Client side is not complete. | |||
2015-02-24 | Use m_close() which will avoid close(-1) | Matt Johnston | |
2015-02-24 | Fix for old compilers, variable declarations at beginning of functions | Thorsten Horstmann | |
and /**/ comments | |||
2015-02-24 | Some minor typo fixes, found by codespell. | Thorsten Horstmann | |
2015-02-24 | DROPBEAR_ prefix for include guards to avoid collisions | Thorsten Horstmann | |
2015-02-21 | get rid of some unnecessary code | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-20 | avoid some warnings | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-20 | Fixes for backwards compatibility | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-20 | Move generic network routines to netio.c | Matt Johnston | |
--HG-- branch : fastopen | |||
2015-02-20 | Update priority once the socket is open | Matt Johnston | |
--HG-- branch : fastopen |