diff options
| author | Gustav HÃ¥llberg <gustav@gmail.com> | 2009-01-16 23:49:38 (GMT) |
|---|---|---|
| committer | Gustav HÃ¥llberg <gustav@gmail.com> | 2009-01-16 23:55:40 (GMT) |
| commit | 6f1485f772cf5671fb5f8d94026254e6f1e6a832 (patch) | |
| tree | 30a35cc8ed5a9dc56dc26fd24a95aac4e7660c02 /tcp.h | |
| parent | dd89c7770b0fcd2e18c0f794ee192b2a62aebc8c (diff) | |
| download | powwow-6f1485f772cf5671fb5f8d94026254e6f1e6a832.zip powwow-6f1485f772cf5671fb5f8d94026254e6f1e6a832.tar.gz powwow-6f1485f772cf5671fb5f8d94026254e6f1e6a832.tar.bz2 | |
semi-properly handle IACs in MPI messages
Diffstat (limited to 'tcp.h')
| -rw-r--r-- | tcp.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -59,7 +59,8 @@ extern fd_set fdset; /* set of descriptors to select() on */ int tcp_connect __P ((char *addr, int port)); int tcp_read __P ((int fd, char *buffer, int maxsize)); -void tcp_raw_write __P ((int fd, char *data, int len)); +void tcp_raw_write __P ((int fd, const char *data, int len)); +void tcp_write_escape_iac __P3 (int,fd, const char *,data, int,len); void tcp_write_tty_size __P ((void)); void tcp_write __P ((int fd, char *data)); void tcp_main_write __P ((char *data)); |
