Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-12-07 | delete 9P2000.u | Russ Cox | 1 | -145/+21 | |
thanks to Erik Quanstrom R=rsc http://codereview.appspot.com/3469042 | |||||
2009-12-10 | 9pserve: roll back changeset 3118 - broke ssh-agent talking to factotum | Russ Cox | 1 | -53/+1 | |
2009-11-30 | Related to issue | Michael Teichgräber | 1 | -0/+53 | |
http://bitbucket.org/rsc/plan9port/issue/38/ This patch tries to make 9pserve work again with 9P2000 clients, in case the server handled by 9pserve expects 9P2000.u. (Since changeset http://bitbucket.org/rsc/plan9port/changeset/d9843471f0bc/ servers using srv() stop communicating after they received a 9P2000 msg that has a different .u definition.) Tattach, Tauth and Tcreate 9P2000 messages will be translated now, if neccessary, to 9P2000.u by growing them to the new size, and providing the missing (default) values. The code of the first two message types has been tested with drawterm on linux (dialing factotum), and mounts from within 9vx to plan9port's factotum and dossrv. The code for Tcreate couldn't be tested due to lack of file servers both speaking 9P2000.u and allowing file creation. R=rsc_swtch, rsc CC=codebot http://codereview.appspot.com/151052 | |||||
2008-06-11 | 9pserve: add -c option | Russ Cox | 1 | -2/+11 | |
2007-10-12 | 9pserve: add -n flag to reject auth by clients | Russ Cox | 1 | -1/+9 | |
2007-08-28 | 9pserve: delete from correct hash slot (fix infinite loop) | Russ Cox | 1 | -1/+1 | |
2007-08-22 | 9pserve: fix a new race involving assert(c->nmsg == 0). | Russ Cox | 1 | -3/+3 | |
Just like outputthread can have processed the message but not yet called msgput, the same is true of the connoutthread, so we cannot check c->nmsg until after the connoutthread has shut down gracefully. | |||||
2007-08-22 | 9pserve: fix races causing assert(c->nmsg == 0) to fail. | Russ Cox | 1 | -26/+36 | |
1. Could happen that connoutthread sends c->outq a nil just before the regular input handler sends c->outq a real message. When the connoutthread gets the nil it will free c->outq, leaving the real message unprocessed. 2. Could happen that the outputthread writes a message body to the remote 9P server and then a response comes in and then the connection gets torn down, all before the outputthread manages to call msgput(m). Thanks to David Swasey for identifying this scenario. Also change yield() loop into explicit communication. Also remove dead code involving hungup queues. | |||||
2007-06-18 | ignore window resize; should be elsewhere | rsc | 1 | -0/+2 | |
2006-05-27 | use same name that srv.c does | rsc | 1 | -3/+1 | |
2006-05-04 | paranoia about extension | rsc | 1 | -1/+1 | |
2006-05-04 | paranoia about extension | rsc | 1 | -1/+6 | |
2006-04-21 | darwin | rsc | 1 | -0/+2 | |
2006-04-01 | Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. | rsc | 1 | -7/+7 | |
2006-03-03 | change Tcreate message in 9P2000.u | rsc | 1 | -1/+7 | |
2006-02-03 | fix offsets | rsc | 1 | -3/+19 | |
2005-11-21 | 9P2000.u fixes (Lucho Ionkov) | rsc | 1 | -4/+15 | |
2005-11-12 | x11, used, etc. | rsc | 1 | -11/+18 | |
2005-09-13 | Signedness. | rsc | 1 | -3/+3 | |
2005-09-13 | Signedness bugs for Mac OS X. | rsc | 1 | -2/+3 | |
2005-09-13 | Add 9P2000.u extensions. | rsc | 1 | -15/+135 | |
2005-07-27 | use correct type for NOFID (sunos) | rsc | 1 | -1/+1 | |
2005-03-21 | add srv -a option | rsc | 1 | -19/+95 | |
2005-03-18 | add verbose9pserve environment variable; fix afid ref | rsc | 1 | -1/+6 | |
2005-03-18 | ignore tstp | rsc | 1 | -1/+3 | |
2005-02-11 | bug fixes; quieter | rsc | 1 | -3/+3 | |
2005-01-17 | do not call exits in threaded programs | rsc | 1 | -1/+1 | |
2005-01-06 | more precision on time | rsc | 1 | -2/+7 | |
2005-01-04 | more debugging | rsc | 1 | -82/+149 | |
2004-12-28 | remove debugging print | rsc | 1 | -1/+0 | |
2004-12-28 | remove race between openfdthread and connoutthread msgput, | rsc | 1 | -1/+8 | |
so that openfd'ed fids always get clunked properly. | |||||
2004-12-28 | use threaddaemonize | rsc | 1 | -14/+8 | |
2004-12-27 | use new thread library | rsc | 1 | -153/+1 | |
2004-03-25 | Today's changes. | rsc | 1 | -1/+1 | |
More changes. | |||||
2004-03-05 | Pipes cannot use SOCK_DGRAM. Back to SOCK_STREAM. | rsc | 1 | -3/+5 | |
Add debugging to fdwait. Rewrite getcallerpc on PowerMac to be correct. | |||||
2004-03-02 | Long-standing stability bugs fixed in 9pserve. | rsc | 1 | -19/+42 | |
Update win to use acme interface directly instead of via pipes. Add comment to pipe about lack of message boundaries. | |||||
2004-03-02 | Tweaks for the Macintosh. | rsc | 1 | -1/+0 | |
2004-02-29 | Small tweaks to make things build again. | rsc | 1 | -1/+1 | |
2004-02-29 | Fighting the good fight. | rsc | 1 | -116/+68 | |
Move libfmt, libutf into subdirectories of lib9. Add poll-based socket i/o to libthread, so that we can avoid using multiple procs when possible, thus removing dependence on crappy pthreads implementations. Convert samterm, acme to the single-proc libthread. Bring libcomplete, acme up-to-date w.r.t. Plan 9 distribution. | |||||
2003-12-17 | Tweaks to various bits. | rsc | 1 | -23/+44 | |
Until I hear otherwise, Refs aren't used enough to merit their own assembly. They are now implemented with locks. | |||||
2003-12-11 | Add support for user-level 9P servers/clients and various bug fixes to go ↵ | rsc | 1 | -32/+425 | |
with them. | |||||
2003-12-09 | check everything in so i can move to linux and valgrind. | rsc | 1 | -60/+409 | |
2003-12-06 | File system stuff. | rsc | 1 | -0/+597 | |