(vtime uint8)
| 62 | } |
| 63 | |
| 64 | func WithVTIME(vtime uint8) Option { |
| 65 | return func(state *unix.Termios) { |
| 66 | state.Cc[unix.VTIME] = vtime |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | func WithoutECHO() Option { |
| 71 | return func(state *unix.Termios) { |
no outgoing calls
searching dependent graphs…