aboutsummaryrefslogtreecommitdiff
path: root/client.c
Commit message (Expand)AuthorAge
* fcntl.h is still needed here.nicm2014-04-29
* Remove some unnecessary includes and fix a typo.nicm2014-04-17
* Fix a memory/fd leak reported by Tiago Cunha.nicm2014-01-09
* Three small changes from Tiago Cunha:nicm2014-01-09
* from nicm: : handle msgbuf_write() returning EAGAINbenno2013-11-13
* Use format_get_command() and some spacing tweaks.nicm2013-10-10
* We accidentally haven't been using $TMUX to work out the session for anicm2013-10-10
* Show session name in detached message. Requested by somebody a fewnicm2013-10-10
* Don't look at string[length - 1] if length == 0.nicm2013-10-10
* Alter how tmux handles the working directory to internally use filenicm2013-10-10
* Similarly for MSG_COMMAND - allow full imsg limit not arbitrary 2048.nicm2013-10-10
* Remove CMD_SENDENVIRON.nicm2013-10-10
* Use lockf which is more portable than flock, from Dagobert Michelsen.Nicholas Marriott2013-04-22
* We ignore SIGWINCH until ready, so send a MSG_RESIZE immediately whenNicholas Marriott2013-03-25
* Rename session idx to session id throughout and add $ prefix to targetsNicholas Marriott2013-03-25
* Send DSC 1000p at the beginning of a -CC client's lifetime and ST andNicholas Marriott2013-03-25
* Add a command queue to standardize and simplify commands that call otherNicholas Marriott2013-03-24
* No more lint means no more ARGSUSED.Nicholas Marriott2013-03-22
* If stdin in the client is enable immediately, tmux will eat anythingNicholas Marriott2012-09-03
* Change a log to fprintf that was missed last time around, from Tiago Cunha.Nicholas Marriott2012-08-27
* xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott2012-07-10
* Actually write all the data to stdout/stderr.Nicholas Marriott2012-06-18
* Add a skeleton mode to tmux (called "control mode") that let's tmuxNicholas Marriott2012-06-18
* Simplify logging and just fprintf(stderr, ...) for early errors.Nicholas Marriott2012-05-25
* Instead of passing stdin/stdout/stderr file descriptors over imsg andNicholas Marriott2012-05-21
* Add missing prototype.Nicholas Marriott2012-04-23
* Use an enum for client exit reasons, from George Nachman.Nicholas Marriott2012-04-23
* Add sys/file.h.Nicholas Marriott2012-03-24
* Move MSG_IDENTIFY to the last sent by the client, this will be needed byNicholas Marriott2012-03-19
* Use a lock file and flock() to serialize server start, avoids problemsNicholas Marriott2012-03-09
* Add a -P option to detach to HUP the client's parent process (usuallyNicholas Marriott2011-03-03
* Move all calls to fcntl(...O_NONBLOCK) into a function and clear theNicholas Marriott2011-01-08
* Merge the before and after attach client code into one in client.cNicholas Marriott2010-10-18
* Trying to set FD_CLOEXEC on every fd is a lost cause, just useNicholas Marriott2010-10-16
* Can't call event_del() without event_set() first - so call event_set()Nicholas Marriott2010-08-23
* MSG_EXIT can now have a return code in the message, so check for thatNicholas Marriott2010-08-22
* Send all three of stdin, stdout, stderr from the client to the server, so thatNicholas Marriott2010-06-28
* Fix problems with window sizing seen by Raghavendra D Prabhu whenNicholas Marriott2010-06-05
* This ioctl(TIOCGWINSZ) call is no longer necessary, the result is neverNicholas Marriott2010-06-05
* Catch SIGHUP and terminate if running as a client. This prevents clientsJoel Sing2010-05-12
* Put this back in with the initialisation in the right order.Nicholas Marriott2010-05-04
* Revert last change, it appears to be broken somehow.Nicholas Marriott2010-05-04
* Make signal handler setup/teardown two common functions instead of six,Nicholas Marriott2010-05-03
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott2009-12-03
* Remove a couple of unused arguments where possible, and add /* ARGSUSED */ toNicholas Marriott2009-11-26
* imsg_read returns ssize_t not int, pointed out by lint via deraadt.Nicholas Marriott2009-11-13
* Don't return 1 unless there was actually a problem (signal/lost server) ratherNicholas Marriott2009-11-10
* Move some common code into a function.Nicholas Marriott2009-11-04
* Initial changes to move tmux to libevent.Nicholas Marriott2009-11-04
* Leftover unused variable :-/.Nicholas Marriott2009-11-02