Only in serproxy-0.1.3.src: .cvsignore diff -c serproxy-0.1.3.src.orig/Makefile serproxy-0.1.3.src/Makefile *** serproxy-0.1.3.src.orig/Makefile Fri Jun 17 20:36:03 2005 --- serproxy-0.1.3.src/Makefile Sun Oct 26 23:00:13 2008 *************** *** 14,20 **** main.o sio.o sock.o thread.o vlist.o cfglib.o config.o string.o \ pipe.c error.c ! CC = gcc ifdef DEBUG CFLAGS = -Wall -g -D__UNIX__ -DDEBUG --- 14,20 ---- main.o sio.o sock.o thread.o vlist.o cfglib.o config.o string.o \ pipe.c error.c ! CC = arm-linux-gcc ifdef DEBUG CFLAGS = -Wall -g -D__UNIX__ -DDEBUG diff -c serproxy-0.1.3.src.orig/README serproxy-0.1.3.src/README *** serproxy-0.1.3.src.orig/README Fri Jun 17 21:05:55 2005 --- serproxy-0.1.3.src/README Sun Oct 26 22:55:20 2008 *************** *** 40,54 **** Used to configure which comm ports serproxy will use. is a comma-separated list of port numbers, where 1 corresponds ! to ttyS0/COM1, 2 corresponds to ttyS1/COM2, etc. (though the serial device can be overridden; see serial_device below for details) Example: ! # Use ttyS0 and ttyS2 comm_ports=1,3 ! --------------------------------------------------------------------- comm_baud= Sets the default baud rate for serial connections. --- 40,54 ---- Used to configure which comm ports serproxy will use. is a comma-separated list of port numbers, where 1 corresponds ! to ttyUSB0/COM1, 2 corresponds to ttyUSB1/COM2, etc. (though the serial device can be overridden; see serial_device below for details) Example: ! # Use ttyUSB0 and ttyUSB2 comm_ports=1,3 ! -------------------------------------------------------------------- comm_baud= Sets the default baud rate for serial connections. *************** *** 123,132 **** Example: ! # Proxy ttyS0/COM1 to/from tcp port 5331 net_port1=5331 ! # Proxy ttyS2/COM3 to/from tcp port 5333 net_port3=5333 --------------------------------------------------------------------- --- 123,132 ---- Example: ! # Proxy ttyUSB0/COM1 to/from tcp port 5331 net_port1=5331 ! # Proxy ttyUSB2/COM3 to/from tcp port 5333 net_port3=5333 --------------------------------------------------------------------- *************** *** 134,144 **** Used to map serial port device files to serial port numbers. is the serial port number, is serial port device file. Defaults to ! /dev/ttyS on Unix, com on Windows. Example: ! # Use /dev/tty.usbserial-1B1 instead of ttyS0/COM1 serial_device1=/dev/tty.usbserial-1B1 --------------------------------------------------------------------- --- 134,144 ---- Used to map serial port device files to serial port numbers. is the serial port number, is serial port device file. Defaults to ! /dev/ttyUSB on Unix, com on Windows. Example: ! # Use /dev/tty.usbserial-1B1 instead of ttyUSB0/COM1 serial_device1=/dev/tty.usbserial-1B1 --------------------------------------------------------------------- *************** *** 150,159 **** Example: ! # Override the global settings for ttyS0 comm_baud1=14400 ! # Override the global settings for ttyS2/COM3 comm_baud3=9600 comm_databits3=7 comm_stopbits3=2 --- 150,159 ---- Example: ! # Override the global settings for ttyUSB0 comm_baud1=14400 ! # Override the global settings for ttyUSB2/COM3 comm_baud3=9600 comm_databits3=7 comm_stopbits3=2 Common subdirectories: serproxy-0.1.3.src.orig/macosx and serproxy-0.1.3.src/macosx diff -c serproxy-0.1.3.src.orig/serproxy.cfg serproxy-0.1.3.src/serproxy.cfg *** serproxy-0.1.3.src.orig/serproxy.cfg Fri Jun 17 20:36:03 2005 --- serproxy-0.1.3.src/serproxy.cfg Sun Oct 26 22:53:50 2008 *************** *** 6,12 **** newlines_to_nils=true # Comm ports used ! comm_ports=1,2,3,4 # Default settings comm_baud=19200 --- 6,12 ---- newlines_to_nils=true # Comm ports used ! comm_ports=1,2 # Default settings comm_baud=19200 *************** *** 17,31 **** # Idle time out in seconds timeout=300 ! # Port 1 settings (ttyS0) net_port1=5331 ! # Port 2 settings (ttyS1) net_port2=5332 - # Port 3 settings (ttyS2) - net_port3=5333 - - # Port 4 settings (ttyS3) - net_port4=5334 --- 17,26 ---- # Idle time out in seconds timeout=300 ! # Port 1 settings (ttyUSB0) net_port1=5331 ! # Port 2 settings (ttyUSB1) net_port2=5332 diff -c serproxy-0.1.3.src.orig/sio.c serproxy-0.1.3.src/sio.c *** serproxy-0.1.3.src.orig/sio.c Fri Jun 17 20:36:03 2005 --- serproxy-0.1.3.src/sio.c Sun Oct 26 22:52:33 2008 *************** *** 92,98 **** } else { ! sprintf(filename, "/dev/ttyS%hd", sio->info.port - 1); fd = open(filename, O_RDWR); } --- 92,98 ---- } else { ! sprintf(filename, "/dev/ttyUSB%hd", sio->info.port - 1); fd = open(filename, O_RDWR); } Common subdirectories: serproxy-0.1.3.src.orig/win32 and serproxy-0.1.3.src/win32