| 545 | } |
| 546 | |
| 547 | void setup_stdin_socket() |
| 548 | { |
| 549 | stdin_fileno = fileno(stdin); |
| 550 | stdin_mode = fcntl(stdin_fileno, F_GETFL); |
| 551 | atexit(reset_stdin); |
| 552 | fcntl(stdin_fileno, F_SETFL, stdin_mode | O_NONBLOCK); |
| 553 | |
| 554 | stdin_socket = new SIPpSocket(0, T_TCP, stdin_fileno, 0); |
| 555 | } |
| 556 | |
| 557 | #define SIPP_ENDL "\r\n" |
| 558 | void handle_stdin_socket() |