Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-23 | upas/fs: don't abort on malformed unix header | cinap_lenrek | |
2017-04-23 | ssh(1): add $home/lib/thumbfile to FILE section | cinap_lenrek | |
2017-04-23 | ssh: document thumbfile options | cinap_lenrek | |
2017-04-23 | ssh: implement primitive hostkey verification | cinap_lenrek | |
this checks $home/lib/sshthumbs for the sha256 hash of the hosts rsa public key. if its not there, it prints the rc command to add it and exits. | |||
2017-04-23 | ssh(1): add bugs section about host not being authenticated | cinap_lenrek | |
2017-04-23 | ssh(1): initial documentation, needs examples for authentication | cinap_lenrek | |
2017-04-22 | vt: handle underline attribute | cinap_lenrek | |
2017-04-22 | merge | cinap_lenrek | |
2017-04-22 | vt: handle nocolor flag and reversed background colors | cinap_lenrek | |
2017-04-22 | merge | spew | |
2017-04-22 | replica: use libavl for avl tree implementation | spew | |
2017-04-22 | vt: handle insert/delete/home/end keys for vt220/xterm | cinap_lenrek | |
2017-04-22 | libavl: lookup can return the closest match | spew | |
2017-04-22 | vt: handle application/normal mode (really fixes cursor keys) | cinap_lenrek | |
2017-04-22 | merge | cinap_lenrek | |
2017-04-22 | vt: fix xterm cursor keys | cinap_lenrek | |
2017-04-22 | merge | cinap_lenrek | |
2017-04-22 | vt: fix background drawing | cinap_lenrek | |
2017-04-21 | nusb/ptp: treat any assocation as a directory | mischief | |
previously nusb/ptp showed only 'generic folder' association type as directories, but all associations work as directories. tested with LG G5/android 7.0 | |||
2017-04-21 | merge | cinap_lenrek | |
2017-04-21 | ssh: actually handle flow control and channel id's | cinap_lenrek | |
2017-04-21 | fix yacc bug (found by dan cross) | aiju | |
2017-04-21 | ssh: increase initial window size for better throughput | cinap_lenrek | |
2017-04-21 | rsa(8): fix description of rsa2ssh (now, ssh2 format only) | cinap_lenrek | |
2017-04-21 | ssh: cleanup debug messages | cinap_lenrek | |
2017-04-20 | ssh: do not try authentication methods that we know are not possible | cinap_lenrek | |
2017-04-20 | ssh: implement password and keyboard-interactive authentication methods | cinap_lenrek | |
2017-04-19 | vt: cursoron, don't resize winow when replying history | cinap_lenrek | |
2017-04-19 | ssh: fix locking, and key reexchange handling | cinap_lenrek | |
when we initiate re-key exchange we data packets can still come in. so instead we have everything that can come in all the time in dispatch() function (including KEXINIT) and have the receiver process just call that in a loop. exclude dispatch and the sender proc from corrupting each others sendpkt() calls with the QLock sl. | |||
2017-04-19 | /lib/rob, /lib/theo: I don't think so. | stanley lieber | |
2017-04-19 | remove accidentally pushed change to .hgignore | aiju | |
2017-04-19 | blit: always show top-left corner; add tony kaku's -m flag | aiju | |
2017-04-19 | change cpurc to look for service folder in /cfg/$sysname and /cfg/default | aiju | |
2017-04-19 | disable all services except 17019, 17020 by default | aiju | |
2017-04-19 | vt: but not too fast :-) | cinap_lenrek | |
if drawing can't keep up with the host, make sure we eventually redraw the screen and check for user events. | |||
2017-04-19 | vt: make it fast | cinap_lenrek | |
2017-04-18 | vt: send interrupt on exit, open logfile OCEXEC, run host after environment ↵ | cinap_lenrek | |
got exported, send rest of arguments to host | |||
2017-04-18 | ssh: close the channel when vt hangs up | cinap_lenrek | |
2017-04-18 | vt: allow for a bit of buffering | cinap_lenrek | |
2017-04-18 | vt: convert from event to threads | cinap_lenrek | |
the event library doesnt do any flow control. if the host keeps sending data while the user is mousing arround, extract() will collect the data until memory fills up. so instead we abandon the event library and convert the program to use channels. | |||
2017-04-17 | vt: increase history buffer to 64K runes | cinap_lenrek | |
2017-04-17 | ssh: weekend project | cinap_lenrek | |
manpage should follow... | |||
2017-04-17 | factotum: append public rsa encyption exponent after the modulus | cinap_lenrek | |
this makes implementing ssh-rsa authentication easier, as we then can convert the public key directly to ssh format and check if the server will accept that public key. tlshand just needs the modulus to see if the public key matches the one it has from the certificate. | |||
2017-04-17 | rsa2ssh: drop support for version 1 key format | cinap_lenrek | |
2017-04-17 | vt: implement snarf support | cinap_lenrek | |
2017-04-11 | pc64: state mp.h dependency for archacpi.$O | cinap_lenrek | |
2017-04-09 | upas/fs: remove imap lastread debounding | cinap_lenrek | |
its unclear why this was here, waketime logic should handle this already. | |||
2017-04-09 | upas/fs: fix sync condition | cinap_lenrek | |
we used to check for mb->d->name != nil before stating, to avoid stating pop3/imap mailboxes who don't really have a local file, but this breaks when the md->d is reconstructed (faked) from the index! resulting in the mailbox stop being refreshed. the solution is to not have mb->d == nil for imap/pop mailoxes. | |||
2017-04-08 | upas/fs: make use of Maxmsg consistent | cinap_lenrek | |
2017-04-08 | upas/fs: simplify imap4read() | cinap_lenrek | |