--- freem/src/io_socket.c 2025/03/09 19:14:25 1.3 +++ freem/src/io_socket.c 2025/03/24 02:54:11 1.5 @@ -1,5 +1,5 @@ /* - * $Id: io_socket.c,v 1.3 2025/03/09 19:14:25 snw Exp $ + * $Id: io_socket.c,v 1.5 2025/03/24 02:54:11 snw Exp $ * socket i/o support * * @@ -24,6 +24,12 @@ * along with FreeM. If not, see . * * $Log: io_socket.c,v $ + * Revision 1.5 2025/03/24 02:54:11 snw + * Socket I/O compat fixes for OS/2 + * + * Revision 1.4 2025/03/22 18:43:54 snw + * Make STRLEN 255 chars and add BIGSTR macro for larger buffers + * * Revision 1.3 2025/03/09 19:14:25 snw * First phase of REUSE compliance and header reformat * @@ -79,7 +85,7 @@ io_socket *io_sockets[MAXSCK]; addr_string: server:port[:family:[udp|tcp]]*/ short msck_open (int channel, char *addr_string) { -#if !defined(MSDOS) +#if !defined(MSDOS) && !defined(__OS2__) char *addr = ""; char *port = ""; char *family = ""; @@ -99,7 +105,7 @@ short msck_open (int channel, char *addr short i = channel + FIRSTSCK; /* get index into io_sockets[] array */ - finaddr = (char *) malloc (STRLEN * sizeof (char)); + finaddr = (char *) malloc (256 * sizeof (char)); NULLPTRCHK(finaddr,"msck_open"); @@ -120,10 +126,10 @@ short msck_open (int channel, char *addr if (ct == 1) { - family = (char *) malloc (STRLEN * sizeof (char)); + family = (char *) malloc (256 * sizeof (char)); NULLPTRCHK(family,"msck_open"); - typ = (char *) malloc (STRLEN * sizeof (char)); + typ = (char *) malloc (256 * sizeof (char)); NULLPTRCHK(typ,"msck_open"); strcpy (family, "IPV4"); @@ -133,7 +139,7 @@ short msck_open (int channel, char *addr if (ct == 2) { family = strtok (NULL, ":"); - typ = (char *) malloc (STRLEN * sizeof (char)); + typ = (char *) malloc (256 * sizeof (char)); NULLPTRCHK(typ,"msck_open"); strcpy (typ, "TCP");