aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * less: do not retry reads of stdin if got EAGAINDenys Vlasenko2026-02-271-35/+35
| * *: don't use getservbyname, it links in a static bufferDenys Vlasenko2026-02-255-37/+145
| * telnet: fix false positive "Error writing to foreign host"Denys Vlasenko2026-02-241-28/+34
| * netstat: fix breakage due to last commitDenys Vlasenko2026-02-243-9/+19
| * netstat,pscan: don't use getservbyport(), it links in a static bufferDenys Vlasenko2026-02-244-10/+64
| * telnet: fixes after testing against some MUD serversDenys Vlasenko2026-02-241-112/+193
| * telnetd: if vfork in make_new_session() fails, do close socket.Denys Vlasenko2026-02-242-46/+84
| * telnet: code shrinkDenys Vlasenko2026-02-231-21/+25
| * telnet: rewrite to use ioloop()Denys Vlasenko2026-02-234-440/+1393
| * telnetd: do not send stray \r\n before /etc/issue.netDenys Vlasenko2026-02-232-3/+3
| * telnetd: do not wait for more input after 10-byte NAWS is receivedDenys Vlasenko2026-02-221-28/+34
| * telnetd: fix handshake: had one wrong, but harmless elementDenys Vlasenko2026-02-222-7/+15
| * telnetd: correct handling of screen sizes with any dimension equal to 255Denys Vlasenko2026-02-221-23/+52
| * telnetd: do close pty when network read returns EOF; try to cause EOF-on-readDenys Vlasenko2026-02-221-36/+66
| * libbb: add generic "fd polling and I/O" loop, use it in telnetdDenys Vlasenko2026-02-215-571/+2623
| * tls: code shrinkDenys Vlasenko2026-02-211-14/+13
| * tls: server: fix incorrect key_block assignments - now works against openssl ...Denys Vlasenko2026-02-155-91/+241
| * tls: make ECDHE_RSA work against our client (openssl s_client not yet)Denys Vlasenko2026-02-154-67/+320
| * tls: remove unnecessary malloc/free in psRsaDecryptPriv()Denys Vlasenko2026-02-151-22/+10
| * tls: fix cipher-id selection in server modeDenys Vlasenko2026-02-153-221/+430
| * tls: eliminate unnecessary ENCRYPT_ON_WRITE, merge tls_get_zeroed_outbuf() wi...Denys Vlasenko2026-02-151-37/+23
| * tls: fix up debug printouts wrt newlinesDenys Vlasenko2026-02-151-88/+90
| * tls: implement server codeDenys Vlasenko2026-02-155-129/+660
| * ssl_server: new applet, not functional yetDenys Vlasenko2026-02-154-17/+191
| * libbb: better comments in read_key()Denys Vlasenko2026-02-151-37/+38
| * *: placate warnings where strchr/strstr returns constant pointerDenys Vlasenko2026-02-1522-51/+58
| * fdisk: implement -t PARTTYPEDenys Vlasenko2026-02-152-11/+22
* | ash: fix here strings causing segfault in subshellsRon Yorston2026-03-041-0/+3
* | ash: allow execution of busybox-w32 binary without extensionRon Yorston2026-02-253-4/+3
* | ash: fix execution of applets via Unix-style pathRon Yorston2026-02-141-18/+15
* | Merge branch 'busybox' into mergeRon Yorston2026-02-1234-238/+319
|\|
| * main: !CONFIG_BUSYBOX: "busybox --OPT" is not a call to applet "-OPT"Denys Vlasenko2026-02-081-1/+4
| * *: whitespace cleanupDenys Vlasenko2026-02-087-8/+0
| * tls: document PSTM_64BIT + PSTM_X86_64 optimizations betterDenys Vlasenko2026-02-082-11/+11
| * vi: code shrinkDenys Vlasenko2026-02-071-7/+9
| * vi: fix last commit - do terminate the :CMD on the first whitespaceDenys Vlasenko2026-02-071-0/+1
| * *: use is_prefixed_with() where appropriateDenys Vlasenko2026-02-074-4/+4
| * vi: fix ":list" commandDenys Vlasenko2026-02-071-32/+30
| * vi: code shrinkDenys Vlasenko2026-02-061-15/+17
| * vi: fix "s /find/repl" with whitespace before /Denys Vlasenko2026-02-062-11/+14
| * vi: code shrink, optimize: do not call count_lines() unless neededDenys Vlasenko2026-02-061-73/+61
| * *: use xasprintf_inplace() and concat_path_file() where appropriateDenys Vlasenko2026-02-067-16/+13
| * *: use xasprintf_inplace() in more placesDenys Vlasenko2026-02-063-18/+17
| * man: fix following links if run inside manpage dirDenys Vlasenko2026-02-051-16/+28
| * libbb: introduce and use xasprintf_inplace()Denys Vlasenko2026-02-059-34/+48
| * watch: implement -xDenys Vlasenko2026-02-051-7/+20
| * libbb: use narrow isqrt() when 64-bit one is not needed (only "factor" uses it)Denys Vlasenko2026-02-043-5/+62
* | Update default configurations; include uuid functionsRon Yorston2026-02-106-7/+23
* | Merge branch 'busybox' into mergeRon Yorston2026-02-1030-592/+1080
|\|
| * volume_id: improve handling of too-small (usually zero-byte or erroring) bloc...Denys Vlasenko2026-02-043-18/+52