stty ihpage ohpage

Hello there,
I did not find any information on the ihpage ohpage ispage ospage parameters
of the stty utility, and the termios’s equivalents.
Does anybody know where I can find documention on that issue.
Thanks,
Rami Raviv

Rani Raviv <raviv_r@netviision.net.il> wrote:

I did not find any information on the ihpage ohpage ispage ospage parameters
of the stty utility, and the termios’s equivalents.
Does anybody know where I can find documention on that issue.

These correspond to the device being “paged” (ie flow control in effect).
To examine this look in the ‘c_status’ field of the ‘struct termios’; the
manifests are TC_ISFLOW, TC_OSFLOW, TC_IHFLOW, TC_OHFLOW (from <termios.h>).
To clear/reset this you use ‘tcflow()’ and TC{I,O}{OFF,ON}[HW].