- Nov 05, 2021
-
-
Andrew Chin authored
Don't sometimes hang just after launching ssh
-
- Oct 29, 2021
-
-
Kalle Samuels authored
sshd has a bug in which the sometimes it may get stuck trying to read from the client even though the child process has already exited. This is visible at https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/serverloop.c?annotate=1.226 line 274: once the child is waited on, `child_terminated` is reset to 0, which causes it to use an infinite timeout in the select there. This workaround causes mosh to disconnect from the server, thereby allowing sshd finish.
-
- Jul 21, 2021
-
-
Andrew Chin authored
.gitignore: add autogenerated files
-
black_desk authored
-
black_desk authored
-
- Jul 14, 2021
-
-
Andrew Chin authored
fixed the irc channel link in README
-
buZz authored
-
- May 18, 2020
- May 17, 2020
-
-
John Hood authored
-
- Oct 03, 2019
-
-
Anders Kaseorg authored
Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
Anders Kaseorg authored
The uninitialized variable warning from T x; broke the test if the user passed CXXFLAGS='-O2 -Wall -Werror'. (Users shouldn’t do that; our own --enable-compile-warnings=error option was unaffected.) Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
Anders Kaseorg authored
Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
Anders Kaseorg authored
These tests only define HAVE_* macros that we never check. Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
Anders Kaseorg authored
As of commit dd941df1 , we no longer build any plain C, except within AM_PROG_AR. Signed-off-by:
Anders Kaseorg <andersk@mit.edu>
-
- Jul 11, 2019
-
-
John Hood authored
Change the openssl-devel package to libssl-devel. Cygwin still has an "obsolete" (essentially virtual) package for openssl-devel, but it doesn't seem to work properly on Appveyor's Cygwin install. Protobuf >= 3.6.0 requires C++11, which I added support for last year. But when I did that, I requested strict ANSI C++ compatibility, which causes Cygwin/newlib's libc feature test macros to be set to disable (at least) POSIX.1 extensions. Let the Autoconf macro use its default instead (prefer GNU/extended C++, accept anything).
-
- Jun 13, 2019
-
-
Anders Kaseorg authored
Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
- Feb 11, 2019
-
-
Anders Kaseorg authored
Statically linking mosh-server with glibc isn’t a great idea for various reasons (nsswitch modules, locale format incompatibilities). But we can provide most of the benefits of static linking by allowing specific library dependencies to be linked statically using -Bstatic and -Bdynamic. The full set is enabled by ./configure --enable-static-libraries which is equivalent to ./configure --enable-static-libstdc++ --enable-static-libgcc \ --enable-static-utempter --enable-static-zlib --enable-static-curses \ --enable-static-crypto --enable-static-protobuf and results in binaries whose only runtime library dependencies are provided with libc: $ ldd src/frontend/mosh-server linux-vdso.so.1 (0x00007ffe0b377000) libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007fa0d9970000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fa0d97e3000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fa0d97c2000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fa0d95d8000) /lib64/ld-linux-x86-64.so.2 (0x00007fa0d9f6a000) Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
Anders Kaseorg authored
Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
- Jan 04, 2019
-
-
Peter Edwards authored
If there are consecutive resize events in the userstream to be applied in "serve", we should apply the last/latest one in the sequence, not the first/earliest one. This fixes a problem where a flurry of resize events (eg, generated by a window manager resizing the client), can cause mosh to have an out-of-date idea as to what the physical geometry of the window is.
-
- Aug 30, 2018
- Aug 16, 2018
- Aug 15, 2018
-
-
- Aug 04, 2018
- Aug 03, 2018
- Apr 13, 2018
-
-
John Hood authored
The 'brew unlink python' can probably be removed for later images.
-
- Apr 12, 2018
-
-
John Hood authored
-
- Jan 19, 2018
-
-
Anders Kaseorg authored
Fixes #634. Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-
- Dec 03, 2017
-
-
Anders Kaseorg authored
Fixes #946, matching the behavior of --server without --local. Signed-off-by:Anders Kaseorg <andersk@mit.edu>
-