├── CLIENT-CHANGELOG.md ├── CLIENT.md ├── LICENSES ├── cc0-1.0.txt └── gpl-2.0.txt ├── NINSTALL-CHANGELOG.md ├── NINSTALL.md ├── NMMANAGE-CHANGELOG.md ├── NMMANAGE.md ├── README.md ├── SERVER-CHANGELOG.md ├── SERVER.md ├── netmount-server ├── Makefile.cross ├── Makefile.freebsd ├── Makefile.linux ├── Makefile.posix ├── Makefile.windows ├── config.hpp ├── fs.cpp ├── fs.hpp ├── fs_freebsd.cpp ├── fs_linux.cpp ├── fs_posix.cpp ├── fs_win.cpp ├── logger.cpp ├── logger.hpp ├── netmount-server.cpp ├── netmount-u2a.map ├── serial_port.cpp ├── serial_port.hpp ├── serial_port_win.cpp ├── slip_udp_serial.cpp ├── slip_udp_serial.hpp ├── udp_socket.cpp ├── udp_socket.hpp ├── udp_socket_win.cpp ├── unicode_to_ascii.cpp ├── unicode_to_ascii.hpp └── utils.hpp ├── netmount ├── Makefile ├── i86.h └── netmount.c ├── ninstall ├── Makefile └── ninstall.c ├── nmmanage ├── Makefile └── nmmanage.c └── shared ├── dos.h ├── drvproto.h ├── exitcode.h ├── nettypes.h ├── pktdrv.h └── shdata.h /CLIENT-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/CLIENT-CHANGELOG.md -------------------------------------------------------------------------------- /CLIENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/CLIENT.md -------------------------------------------------------------------------------- /LICENSES/cc0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/LICENSES/cc0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/LICENSES/gpl-2.0.txt -------------------------------------------------------------------------------- /NINSTALL-CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0 (2025-10-02) 2 | 3 | - First version 4 | -------------------------------------------------------------------------------- /NINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/NINSTALL.md -------------------------------------------------------------------------------- /NMMANAGE-CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2025-11-21) 2 | 3 | - First version 4 | -------------------------------------------------------------------------------- /NMMANAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/NMMANAGE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/README.md -------------------------------------------------------------------------------- /SERVER-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/SERVER-CHANGELOG.md -------------------------------------------------------------------------------- /SERVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/SERVER.md -------------------------------------------------------------------------------- /netmount-server/Makefile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/Makefile.cross -------------------------------------------------------------------------------- /netmount-server/Makefile.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/Makefile.freebsd -------------------------------------------------------------------------------- /netmount-server/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/Makefile.linux -------------------------------------------------------------------------------- /netmount-server/Makefile.posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/Makefile.posix -------------------------------------------------------------------------------- /netmount-server/Makefile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/Makefile.windows -------------------------------------------------------------------------------- /netmount-server/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/config.hpp -------------------------------------------------------------------------------- /netmount-server/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/fs.cpp -------------------------------------------------------------------------------- /netmount-server/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/fs.hpp -------------------------------------------------------------------------------- /netmount-server/fs_freebsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/fs_freebsd.cpp -------------------------------------------------------------------------------- /netmount-server/fs_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/fs_linux.cpp -------------------------------------------------------------------------------- /netmount-server/fs_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/fs_posix.cpp -------------------------------------------------------------------------------- /netmount-server/fs_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/fs_win.cpp -------------------------------------------------------------------------------- /netmount-server/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/logger.cpp -------------------------------------------------------------------------------- /netmount-server/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/logger.hpp -------------------------------------------------------------------------------- /netmount-server/netmount-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/netmount-server.cpp -------------------------------------------------------------------------------- /netmount-server/netmount-u2a.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/netmount-u2a.map -------------------------------------------------------------------------------- /netmount-server/serial_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/serial_port.cpp -------------------------------------------------------------------------------- /netmount-server/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/serial_port.hpp -------------------------------------------------------------------------------- /netmount-server/serial_port_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/serial_port_win.cpp -------------------------------------------------------------------------------- /netmount-server/slip_udp_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/slip_udp_serial.cpp -------------------------------------------------------------------------------- /netmount-server/slip_udp_serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/slip_udp_serial.hpp -------------------------------------------------------------------------------- /netmount-server/udp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/udp_socket.cpp -------------------------------------------------------------------------------- /netmount-server/udp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/udp_socket.hpp -------------------------------------------------------------------------------- /netmount-server/udp_socket_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/udp_socket_win.cpp -------------------------------------------------------------------------------- /netmount-server/unicode_to_ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/unicode_to_ascii.cpp -------------------------------------------------------------------------------- /netmount-server/unicode_to_ascii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/unicode_to_ascii.hpp -------------------------------------------------------------------------------- /netmount-server/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount-server/utils.hpp -------------------------------------------------------------------------------- /netmount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount/Makefile -------------------------------------------------------------------------------- /netmount/i86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount/i86.h -------------------------------------------------------------------------------- /netmount/netmount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/netmount/netmount.c -------------------------------------------------------------------------------- /ninstall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/ninstall/Makefile -------------------------------------------------------------------------------- /ninstall/ninstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/ninstall/ninstall.c -------------------------------------------------------------------------------- /nmmanage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/nmmanage/Makefile -------------------------------------------------------------------------------- /nmmanage/nmmanage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/nmmanage/nmmanage.c -------------------------------------------------------------------------------- /shared/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/shared/dos.h -------------------------------------------------------------------------------- /shared/drvproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/shared/drvproto.h -------------------------------------------------------------------------------- /shared/exitcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/shared/exitcode.h -------------------------------------------------------------------------------- /shared/nettypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/shared/nettypes.h -------------------------------------------------------------------------------- /shared/pktdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/shared/pktdrv.h -------------------------------------------------------------------------------- /shared/shdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrohel/NetMount/HEAD/shared/shdata.h --------------------------------------------------------------------------------