aboutsummaryrefslogtreecommitdiff
path: root/client.c
Commit message (Expand)AuthorAge
* 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
* There isn't much point in doing lstat before connect so instead just do connectNicholas Marriott2009-11-02
* Clear signal flags /before/ taking action and continue afterwards to reduceNicholas Marriott2009-10-26
* Tidy identify message send into a separate function.Nicholas Marriott2009-10-21
* Client tidying: get rid of client_ctx struct in favour of two variables inNicholas Marriott2009-10-21
* Do this in a better way - print messages when exiting with nonzero.Nicholas Marriott2009-10-13
* Don't print exit messages when used as a login shell, requested by martynas@ aNicholas Marriott2009-10-13
* Support -c like sh(1) to execute a command, useful when tmux is a loginNicholas Marriott2009-09-23
* Remove the internal tmux locking and instead detach each client and run theNicholas Marriott2009-09-23
* Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the clientNicholas Marriott2009-09-23
* Don't attempt to open() the tty path, rely on the client sending its stdin fdNicholas Marriott2009-09-23
* Regularise some fatal messages.Nicholas Marriott2009-09-20
* Fix a race condition when asking a client to take over the terminal (switchingNicholas Marriott2009-09-02
* That was the wrong fix. MSG_ERROR should set the error and the client shouldNicholas Marriott2009-09-02
* Set exittype for error exit as well as the error string.Nicholas Marriott2009-09-02
* imsg closes the fd after sending, so dup() STDIN_FILENO before passing it toNicholas Marriott2009-08-12
* Have the client pass its stdin fd to the server when identifying itself andNicholas Marriott2009-08-11
* Switch tmux to use imsg. This is the last major change to make theNicholas Marriott2009-08-11
* Infrastructure and commands to manage the environment for processes startedNicholas Marriott2009-08-08
* Tidy function a little by using a temporary variable.Nicholas Marriott2009-08-08
* There aren't many client message types or code to handle them so get rid of theNicholas Marriott2009-07-30
* Tell the server when the client gets SIGTERM so it can clean up the terminalNicholas Marriott2009-07-30
* Make all messages sent between the client and server fixed size.Nicholas Marriott2009-07-26
* None of the server message functions return anything but 0, so make them allNicholas Marriott2009-07-23
* Tidy client message return slightly: convert flags into an enum, and mergeNicholas Marriott2009-07-23
* Pass a set of flags into client_init rather than just a start_serverNicholas Marriott2009-07-22
* Remove some dead assignments, found by sthen with clang.Nicholas Marriott2009-06-25
* Call setproctitle earlier in the client, and include the socket name. Makes itNicholas Marriott2009-06-05
* Import tmux, a terminal multiplexor allowing (among other things) a singleNicholas Marriott2009-06-01