aboutsummaryrefslogtreecommitdiffstats
path: root/tcp.h
diff options
context:
space:
mode:
authorGustav HÃ¥llberg <gustav@gmail.com>2009-01-16 23:49:38 (GMT)
committerGustav HÃ¥llberg <gustav@gmail.com>2009-01-16 23:55:40 (GMT)
commit6f1485f772cf5671fb5f8d94026254e6f1e6a832 (patch)
tree30a35cc8ed5a9dc56dc26fd24a95aac4e7660c02 /tcp.h
parentdd89c7770b0fcd2e18c0f794ee192b2a62aebc8c (diff)
downloadpowwow-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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tcp.h b/tcp.h
index 1813980..56389b9 100644
--- a/tcp.h
+++ b/tcp.h
@@ -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));