mirror of
https://github.com/moparisthebest/socat
synced 2024-12-21 22:48:48 -05:00
Added option rawer for pty
This commit is contained in:
parent
8c8f817780
commit
522bb45479
3
CHANGES
3
CHANGES
@ -47,6 +47,9 @@ new features:
|
|||||||
Added support for methods TLSv1, TLSv1.1, TLSv1.2, and DTLS1
|
Added support for methods TLSv1, TLSv1.1, TLSv1.2, and DTLS1
|
||||||
Tests: OPENSSL_METHOD_*
|
Tests: OPENSSL_METHOD_*
|
||||||
|
|
||||||
|
Added a new option termios-rawer for ptys.
|
||||||
|
Thanks to Christian Vogelgsang for pointing me to this requirement
|
||||||
|
|
||||||
corrections:
|
corrections:
|
||||||
Bind with ABSTRACT commands used non-abstract namespace (Linux).
|
Bind with ABSTRACT commands used non-abstract namespace (Linux).
|
||||||
Test: ABSTRACT_BIND
|
Test: ABSTRACT_BIND
|
||||||
|
4
test.sh
4
test.sh
@ -178,7 +178,9 @@ case "$UNAME" in
|
|||||||
# ;;
|
# ;;
|
||||||
*)
|
*)
|
||||||
PTYOPTS="echo=0,opost=0"
|
PTYOPTS="echo=0,opost=0"
|
||||||
PTYOPTS2="raw,echo=0"
|
#PTYOPTS2="raw,echo=0"
|
||||||
|
#PTYOPTS2="cfmakeraw"
|
||||||
|
PTYOPTS2="rawer"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* source: xio-termios.c */
|
/* source: xio-termios.c */
|
||||||
/* Copyright Gerhard Rieger 2001-2011 */
|
/* Copyright Gerhard Rieger */
|
||||||
/* Published under the GNU General Public License V.2, see file COPYING */
|
/* Published under the GNU General Public License V.2, see file COPYING */
|
||||||
|
|
||||||
/* this file contains the source for terminal I/O options */
|
/* this file contains the source for terminal I/O options */
|
||||||
@ -268,6 +268,8 @@ const struct optdesc opt_veol2 = { "veol2", "eol2", OPT_VEOL2, GROUP_TER
|
|||||||
|
|
||||||
const struct optdesc opt_raw = { "raw", NULL, OPT_RAW, GROUP_TERMIOS, PH_FD, TYPE_CONST, OFUNC_TERMIOS_SPEC };
|
const struct optdesc opt_raw = { "raw", NULL, OPT_RAW, GROUP_TERMIOS, PH_FD, TYPE_CONST, OFUNC_TERMIOS_SPEC };
|
||||||
const struct optdesc opt_sane = { "sane", NULL, OPT_SANE, GROUP_TERMIOS, PH_FD, TYPE_CONST, OFUNC_TERMIOS_SPEC };
|
const struct optdesc opt_sane = { "sane", NULL, OPT_SANE, GROUP_TERMIOS, PH_FD, TYPE_CONST, OFUNC_TERMIOS_SPEC };
|
||||||
|
const struct optdesc opt_termios_cfmakeraw = { "termios-cfmakeraw", "cfmakeraw", OPT_TERMIOS_CFMAKERAW, GROUP_TERMIOS, PH_FD, TYPE_CONST, OFUNC_TERMIOS_SPEC };
|
||||||
|
const struct optdesc opt_termios_rawer = { "termios-rawer", "rawer", OPT_TERMIOS_RAWER, GROUP_TERMIOS, PH_FD, TYPE_CONST, OFUNC_TERMIOS_SPEC };
|
||||||
|
|
||||||
#ifdef HAVE_TERMIOS_ISPEED
|
#ifdef HAVE_TERMIOS_ISPEED
|
||||||
#if defined(ISPEED_OFFSET) && (ISPEED_OFFSET != -1)
|
#if defined(ISPEED_OFFSET) && (ISPEED_OFFSET != -1)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* source: xio-termios.h */
|
/* source: xio-termios.h */
|
||||||
/* Copyright Gerhard Rieger 2001-2008 */
|
/* Copyright Gerhard Rieger */
|
||||||
/* Published under the GNU General Public License V.2, see file COPYING */
|
/* Published under the GNU General Public License V.2, see file COPYING */
|
||||||
|
|
||||||
#ifndef __xio_termios_h_included
|
#ifndef __xio_termios_h_included
|
||||||
@ -138,6 +138,8 @@ extern const struct optdesc opt_sane;
|
|||||||
extern const struct optdesc opt_ispeed;
|
extern const struct optdesc opt_ispeed;
|
||||||
extern const struct optdesc opt_ospeed;
|
extern const struct optdesc opt_ospeed;
|
||||||
|
|
||||||
|
extern const struct optdesc opt_termios_rawer;
|
||||||
|
|
||||||
#if _WITH_TERMIOS /* otherwise tcflag_t might be reported undefined */
|
#if _WITH_TERMIOS /* otherwise tcflag_t might be reported undefined */
|
||||||
extern int xiotermios_setflag(int fd, int word, tcflag_t mask);
|
extern int xiotermios_setflag(int fd, int word, tcflag_t mask);
|
||||||
extern int xiotermios_clrflag(int fd, int word, tcflag_t mask);
|
extern int xiotermios_clrflag(int fd, int word, tcflag_t mask);
|
||||||
|
10
xioopts.c
10
xioopts.c
@ -1196,6 +1196,7 @@ const struct optname optionnames[] = {
|
|||||||
IF_TERMIOS("quit", &opt_vquit)
|
IF_TERMIOS("quit", &opt_vquit)
|
||||||
IF_RANGE ("range", &opt_range)
|
IF_RANGE ("range", &opt_range)
|
||||||
IF_TERMIOS("raw", &opt_raw)
|
IF_TERMIOS("raw", &opt_raw)
|
||||||
|
IF_TERMIOS("rawer", &opt_termios_rawer)
|
||||||
IF_SOCKET ("rcvbuf", &opt_so_rcvbuf)
|
IF_SOCKET ("rcvbuf", &opt_so_rcvbuf)
|
||||||
IF_SOCKET ("rcvbuf-late", &opt_so_rcvbuf_late)
|
IF_SOCKET ("rcvbuf-late", &opt_so_rcvbuf_late)
|
||||||
#ifdef SO_RCVLOWAT
|
#ifdef SO_RCVLOWAT
|
||||||
@ -1623,6 +1624,8 @@ const struct optname optionnames[] = {
|
|||||||
IF_IPAPP ("tcpwrapper", &opt_tcpwrappers)
|
IF_IPAPP ("tcpwrapper", &opt_tcpwrappers)
|
||||||
IF_IPAPP ("tcpwrappers", &opt_tcpwrappers)
|
IF_IPAPP ("tcpwrappers", &opt_tcpwrappers)
|
||||||
#endif
|
#endif
|
||||||
|
IF_TERMIOS("termios-cfmakeraw", &opt_termios_cfmakeraw)
|
||||||
|
IF_TERMIOS("termios-rawer", &opt_termios_rawer)
|
||||||
#ifdef O_TEXT
|
#ifdef O_TEXT
|
||||||
IF_ANY ("text", &opt_o_text)
|
IF_ANY ("text", &opt_o_text)
|
||||||
#endif
|
#endif
|
||||||
@ -3647,6 +3650,13 @@ int applyopts(int fd, struct opt *opts, enum e_phase phase) {
|
|||||||
termarg.c_cc[VMIN] = 1;
|
termarg.c_cc[VMIN] = 1;
|
||||||
termarg.c_cc[VTIME] = 0;
|
termarg.c_cc[VTIME] = 0;
|
||||||
break;
|
break;
|
||||||
|
case OPT_TERMIOS_RAWER:
|
||||||
|
termarg.c_iflag = 0;
|
||||||
|
termarg.c_oflag = 0;
|
||||||
|
termarg.c_lflag = 0;
|
||||||
|
termarg.c_cc[VMIN] = 1;
|
||||||
|
termarg.c_cc[VTIME] = 0;
|
||||||
|
break;
|
||||||
case OPT_SANE:
|
case OPT_SANE:
|
||||||
/* cread -ignbrk brkint -inlcr -igncr icrnl
|
/* cread -ignbrk brkint -inlcr -igncr icrnl
|
||||||
-ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl
|
-ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl
|
||||||
|
@ -785,6 +785,8 @@ enum e_optcode {
|
|||||||
#ifdef TCP_WINDOW_CLAMP
|
#ifdef TCP_WINDOW_CLAMP
|
||||||
OPT_TCP_WINDOW_CLAMP, /* Linux 2.4.0 */
|
OPT_TCP_WINDOW_CLAMP, /* Linux 2.4.0 */
|
||||||
#endif
|
#endif
|
||||||
|
OPT_TERMIOS_CFMAKERAW, /* termios.cfmakeraw() */
|
||||||
|
OPT_TERMIOS_RAWER,
|
||||||
OPT_TIOCSCTTY,
|
OPT_TIOCSCTTY,
|
||||||
OPT_TOSTOP, /* termios.c_lflag */
|
OPT_TOSTOP, /* termios.c_lflag */
|
||||||
OPT_TUN_DEVICE, /* tun: /dev/net/tun ... */
|
OPT_TUN_DEVICE, /* tun: /dev/net/tun ... */
|
||||||
|
Loading…
Reference in New Issue
Block a user