1
0
mirror of https://github.com/simh/simh.git synced 2026-04-17 00:36:00 +00:00

TMXR, SOCK: Properly declare as const string input only arguments.

This commit is contained in:
Mark Pizzolato
2014-12-06 03:50:45 -08:00
parent d1b5e3aa27
commit c083b45c14
4 changed files with 8 additions and 8 deletions

View File

@@ -111,7 +111,7 @@ SOCKET sim_accept_conn (SOCKET master, char **connectaddr);
SOCKET sim_accept_conn_ex (SOCKET master, char **connectaddr, t_bool nodelay);
int32 sim_check_conn (SOCKET sock, t_bool rd);
int32 sim_read_sock (SOCKET sock, char *buf, int32 nbytes);
int32 sim_write_sock (SOCKET sock, char *msg, int32 nbytes);
int32 sim_write_sock (SOCKET sock, const char *msg, int32 nbytes);
void sim_close_sock (SOCKET sock, t_bool master);
SOCKET sim_err_sock (SOCKET sock, const char *emsg, int32 flg);
int32 sim_getnames_sock (SOCKET sock, char **socknamebuf, char **peernamebuf);