1. e09f5e3 udhcp6: read_interface should save link-local ipv6 address by Denys Vlasenko · 8 years ago
  2. 876c121 whitespace fix by Denys Vlasenko · 8 years ago
  3. 7c67f1e udhcpc: make sure we do not overflow poll timeout by Denys Vlasenko · 8 years ago
  4. 94dcfd8 nc_bloaty: use poll() instead of select() by Denys Vlasenko · 8 years ago
  5. 52a515d udhcp: use poll() instead of select() by Denys Vlasenko · 8 years ago
  6. dc207f6 udhcp: do not clobber errno by signal handler by Denys Vlasenko · 8 years ago
  7. 5b3b468 nc: use poll() instead of select() by Denys Vlasenko · 8 years ago
  8. 0ec4d08 tls: covert i/o loop from using select() to poll() by Denys Vlasenko · 8 years ago
  9. 8cc1ab3 httpd: use "Content-Length", not "-length" by Denys Vlasenko · 8 years ago
  10. c31b54f tls: fold AES CBC en/decryption into single functions by Denys Vlasenko · 8 years ago
  11. 5b05d9d wget/tls: session_id of zero length is ok (arxiv.org responds with such) by Denys Vlasenko · 8 years ago
  12. 67f6db6 wget: add a big explanation what TLS code implements and what does not by Denys Vlasenko · 8 years ago
  13. b181ca7 typo in comment by Denys Vlasenko · 8 years ago
  14. 205d48e *: add comment about APPLET_ODDNAME format by Denys Vlasenko · 8 years ago
  15. b4b12bf httpd: defend against attempts to OOM us. Closes 9611 by Denys Vlasenko · 8 years ago
  16. b13b618 ftpd/ls: show directories first by Denys Vlasenko · 8 years ago
  17. 2181fb4 ftpd: new option -a ANON_USER to allow anonymous logins by Andrey Mozzhuhin · 8 years ago
  18. dff9fef wget: add support for -S --server-response by Denys Vlasenko · 8 years ago
  19. 89193f9 tls: can download kernels now :) by Denys Vlasenko · 8 years ago
  20. 1500b3a tls: if got CERTIFICATE_REQUEST, send an empty CERTIFICATE by Denys Vlasenko · 8 years ago
  21. 49ecee0 tls: add 2nd cipher_id, TLS_RSA_WITH_AES_128_CBC_SHA, so far it doesn't work by Denys Vlasenko · 8 years ago
  22. 7a18b95 tls: reorder tls_handshake_data fields for smaller size, tweak comments by Denys Vlasenko · 8 years ago
  23. b5bf191 tls: send EMPTY_RENEGOTIATION_INFO_SCSV in our client hello by Denys Vlasenko · 8 years ago
  24. 9492da7 tls: set TLS_DEBUG to 0; placate a gcc indentation warning by Denys Vlasenko · 8 years ago
  25. 9a647c3 separate TLS code into a library, use in in wget by Denys Vlasenko · 8 years ago
  26. 1238988 ip: better --help by Denys Vlasenko · 8 years ago
  27. 8908c1d more ip --help fixes by Denys Vlasenko · 8 years ago
  28. f3d705f make --help texts smaller by Denys Vlasenko · 8 years ago
  29. bbc7bee make --help texts more uniform by Denys Vlasenko · 8 years ago
  30. f6e2072 tls: reorder tls_state fields for smaller offsets by Denys Vlasenko · 8 years ago
  31. dd2577f tls: send SNI in the client hello by Denys Vlasenko · 8 years ago
  32. 0af5265 tls: check size on "MAC-only, no crypt" code path too by Denys Vlasenko · 8 years ago
  33. 54b927d tls: AES decrypt does one unnecessary memmove by Denys Vlasenko · 8 years ago
  34. 3916139 tls: make input buffer grow as needed by Denys Vlasenko · 8 years ago
  35. 38972a8 tls: improve i/o loop by Denys Vlasenko · 8 years ago
  36. e7863f3 tls: was psAesDecrypt'ing one block too many, trashing buffered data by Denys Vlasenko · 8 years ago
  37. 179e88b rdate: make it do something remotely sane, facing 32-bit time overflow by Denys Vlasenko · 8 years ago
  38. 19e695e tls: do not use common_bufsiz by Denys Vlasenko · 8 years ago
  39. a0aae9f tls: decode alerts and in particular, EOF alert. by Denys Vlasenko · 8 years ago
  40. abbf17a tls: add the i/o loop - largish rework of i/o buffering by Denys Vlasenko · 8 years ago
  41. f7806f9 tls: fix ROL/ROR x86 optimization by Denys Vlasenko · 8 years ago
  42. 432f1ae tls: tested PSTM_X86_64, not enabling it - too large by Denys Vlasenko · 8 years ago
  43. 6b1b004 tls: commented out psPool_t use by Denys Vlasenko · 8 years ago
  44. 1bfc4b8 ntpd: print result of hostname resolution by Denys Vlasenko · 8 years ago
  45. cccf8e7 tls: teach it to decrypt AES256-encrypted data by Denys Vlasenko · 8 years ago
  46. a9e1866 tls: trim comments by Denys Vlasenko · 8 years ago
  47. b5dfc3d tls: teach it to send AES256-encrypted data by Denys Vlasenko · 8 years ago
  48. b7e9ae6 tls: added AES code and made it compile. not used yet by Denys Vlasenko · 8 years ago
  49. c8ba23b tls: massage writing for encryption support; finer-grained debug by Denys Vlasenko · 8 years ago
  50. 5d1662e tls: address one easy FIXME, tidy up comments by Denys Vlasenko · 8 years ago
  51. e69d78c tls: process CHANGE_CIPHER_SPEC and FINISHED from server by Denys Vlasenko · 8 years ago
  52. fe0588d tls: rearrange function order, improve comments by Denys Vlasenko · 8 years ago
  53. e2cb3b9 tls: make our send_client_finished() pass server check by Denys Vlasenko · 8 years ago
  54. 9a6897a tls: format FINISHED message properly for unencrypted, but sha256 signed mode by Denys Vlasenko · 8 years ago
  55. 4e08a12 Assorted warning fixes and added a comment, no code changes by Denys Vlasenko · 8 years ago
  56. 936e83e tls: add sha256 hmac and prf code by Denys Vlasenko · 8 years ago
  57. 3f8ecd9 tls: rearrange code, add/improve comments, fix whitespace, no real changes here by Denys Vlasenko · 8 years ago
  58. c5540d6 tls: send CHANGE_CIPHER_SPEC by Denys Vlasenko · 8 years ago
  59. f78ad09 whitespace fix by Denys Vlasenko · 8 years ago
  60. 11d0096 tls: format and send CLIENT_KEY_EXCHANGE by Denys Vlasenko · 8 years ago
  61. 2a17d1f tls: DER length byte 0x81 is actually valid by Denys Vlasenko · 8 years ago
  62. b1003f7 tls: a bit more work by Denys Vlasenko · 8 years ago
  63. ceff6b0 tls: work-in-progress TLS1.2 test applet by Denys Vlasenko · 8 years ago
  64. a6f8651 wget: fix for brain-damaged HTTP servers. Closes 9471 by Denys Vlasenko · 8 years ago
  65. ed15dde Move FEATURE_AUTOWIDTH config option to two applets which use it by Denys Vlasenko · 8 years ago
  66. f560422 Big cleanup in config help and description by Denys Vlasenko · 8 years ago
  67. 0ef478f httpd: fix address family for reverse proxy client socket by Laurent Bercot · 8 years ago
  68. b62ea34 ntpd: improve postponed hostname resolution by Natanael Copa · 8 years ago
  69. c6137ba udhcp: tweak config order and menu item names by Denys Vlasenko · 8 years ago
  70. c6725b0 Fix dependency for IFUPDOWN_UDHCPC_CMD_OPTIONS by Jörg Krause · 8 years ago
  71. 7890035 tcpudp: define SO_ORIGINAL_DST directly, not via include by Denys Vlasenko · 8 years ago
  72. 100aea8 Remove FEATURE_IFUPDOWN_IP_BUILTIN and FEATURE_IFUPDOWN_IFCONFIG_BUILTIN by Denys Vlasenko · 8 years ago
  73. 9cc3d3a fix breakage found by mass one-applet builds by Denys Vlasenko · 8 years ago
  74. 7c5dea3 ip: make ip aliases individually selectable by Denys Vlasenko · 8 years ago
  75. 5d27cb3 Make POST upload example script easier to use by Denys Vlasenko · 8 years ago
  76. 4acd393 Update information on building httpd and wget helpers by Denys Vlasenko · 8 years ago
  77. b42107f libiproute: handle table ids larger than 255 by Lukasz Nowak · 8 years ago
  78. 1d3a04a Code style fixes, no code changes by Denys Vlasenko · 8 years ago
  79. f7683cd Convert all udhcp applets to "new style" applet definitions by Denys Vlasenko · 8 years ago
  80. 29e2c45 tc: consolidate its disabled bits by Denys Vlasenko · 8 years ago
  81. 8342397 Make ping6 and traceroute6 selectable independently from ping/traceroute by Denys Vlasenko · 8 years ago
  82. 6bfab0c ipneigh: add this shortcur similar to other "ip <CMD>" shortcuts by Denys Vlasenko · 8 years ago
  83. 3148e0c Rename FEATURE_FTP_WRITE and FEATURE_FTP_AUTHENTICATION to *_FTPD_* by Denys Vlasenko · 8 years ago
  84. 47367e1 Convert all networking/* applets to "new style" applet definitions by Denys Vlasenko · 8 years ago
  85. 9f8eb1e httpd: explain why we use sprintf and why it should be fine by Denys Vlasenko · 8 years ago
  86. a8c696b Make ifup and ifdown individually selectable. by Denys Vlasenko · 8 years ago
  87. 67fd2f2 dnsdomainname: split it from "hostname", make it independently selectable by Denys Vlasenko · 8 years ago
  88. f11c698 udhcpc: check read of overload option data byte to be within packet by Denys Vlasenko · 8 years ago
  89. f9beeb2 udhcpc: check read of option length byte to be within packet by Brian Foley · 8 years ago
  90. 662634b telnetd: ifdef out a buggy error handling code path by Denys Vlasenko · 8 years ago
  91. 57727d4 telnet: code shrink by Denys Vlasenko · 8 years ago
  92. 26d88d6 telnetd: add another handshake example in comments, no code changes by Denys Vlasenko · 8 years ago
  93. b6d421b telnetd: treat all 2-byte IACs in 240..249 range as NOPs. by Denys Vlasenko · 8 years ago
  94. 122c47a telnetd: fix corner case of input processing of 0xff bytes by Denys Vlasenko · 8 years ago
  95. 0190c41 telnetd: fix a corner case where CRLF->CR translation can misbehave by Denys Vlasenko · 8 years ago
  96. 2a54b3e telnetd: fix handling of short writes to pty by Denys Vlasenko · 8 years ago
  97. 3720a61 ifupdown: rewrite state file atomically by Denys Vlasenko · 8 years ago
  98. ec1ea16 tcpsvd: don't keep shared fd open if fd limit is reached. closes 9331 by Denys Vlasenko · 8 years ago
  99. 2972e2c wget: there is no -s option in GNU Wget 1.18, we should be compatible by Denys Vlasenko · 8 years ago
  100. a85740c dhcp: merge leases.c and static_leases.c into dhcpd.c by Denys Vlasenko · 8 years ago