Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question is related to pty terminal packet mode TIOCPKT

What the linux way of enabling packet mode? I could not find I_PUSH working when passed in ioctl function.

share|improve this question
This q was here some days ago: stackoverflow.com/questions/7460035/… – ott-- Sep 30 '11 at 19:51

1 Answer

up vote 1 down vote accepted

TIOCPKT is exactly what you want, according to the tty_ioctl(4) man page: the argument is a pointer to an integer which is non-zero to enable packet mode, or zero to disable it.

share|improve this answer
Thanks for responding. What does it mean by "pointer to a non-zero integer" ? And how do I call it: ioctl(fd, TIOCPKT,....??) – hari Sep 30 '11 at 21:41
int flag = 1; ioctl(fd, TIOCPKT, &flag); – Matthew Slattery Sep 30 '11 at 22:42
I am getting error - Inappropriate ioctl for device. I am on Linux 2.6.32-26-generic. – hari Sep 30 '11 at 23:43
It should work on the master side of a pty. It will give that error otherwise. – Matthew Slattery Oct 1 '11 at 0:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.