mTCP DOS Logo

TCP/IP applications for your PC compatible retro-computers

Current version: March 31st, 2023


2023-12-10: Good news everyone! mTCP NetDrive is available!

mTCP NetDrive lets you connect to a remote drive image (floppy or hard disk) using a local drive letter. Add network attached storage to your machine nearly instantly! The device driver works on all versions of DOS starting with DOS 2.0 and requires a minimal amount of memory. The server is available for Linux (x86 and ARM) or Windows and it requires no special packages or permissions to run. NetDrive will even work on remote servers across the Internet!

See mTCP NetDrive for details.


Overview

mTCP is a set of TCP/IP applications for personal computers running PC-DOS, MS-DOS, FreeDOS, and other flavors of DOS. The applications include:

mTCP runs on all variants of DOS including IBM PC-DOS, Microsoft MS-DOS, DR-DOS and FreeDOS. All of these applications will run well on the oldest, slowest PC that you can find - I routinely use them on an IBM PCjr made in 1983 because nothing beats the fun of putting a 39 year old computer on the Internet.

People are using mTCP for goofing off and for real work. If you have a DOS machine that needs to send data across the network mTCP can help you get that done. Besides its utility to vintage computers I have heard of people using it to transfer lab data from dedicated industrial PCs, allowing backups to be run on old machines, and sending sales reports from the branch offices of a retail store to a central server.

Don't have a vintage computer laying around? No problem! mTCP applications will run in a variety of virtual and emulated environments. It has been tested with modified DOSBox builds, VirtualBox, VMWare, and QEMU. See the documentation for the details.

Requirements

mTCP applications should work on any IBM PC compatible personal computer running DOS. To be more specific:

A packet driver is a utility that lets a program send and receive Ethernet packets using your network card. The packet driver specification is widely supported by both old and new Ethernet cards. If your Ethernet card does not have a packet driver available an NDIS or ODI driver with a "shim" to convert to the packet specification should work but that will require more memory and be slower than having a real packet driver. SLIP and PPP connections are also supported if they use a packet driver that emulates Ethernet. See http://crynwr.com/packet_driver.html for more information on the packet driver specification.

My personal testing includes:

Machines:

Ethernet adapters:

Serial ports:

Hundreds (thousands?) of people are using mTCP on a diverse set of hardware. If your machine runs DOS and you have a packet driver for your Ethernet card, then mTCP will probably work for you. SLIP and PPP are also supported via EtherSLIP, so any machine with a serial port can work too. (Even Token Ring using a packet driver that emulates Ethernet has been demonstrted to work.)

Downloads

This is the official mTCP home page. There are other sites that mirror mTCP but only this page guaranteed to have the original, unmodified binaries. Anything you find on github, ibiblio or other sites is not verified by me.

If you click a link and nothing happens it is because of a mismatch between HTTPS (the current page) and the download link, which is HTTP. Copy the link to a new tab, open the window, and it will download.

Current version: Binaries and source code available under the GPLv3 license
mTCP_2023-03-31.zip Standard binaries The mTCP applications and sample files.
mTCP_2023-03-31_upx.zip UPX compressed binaries The same as above, but the EXEs are compressed to take less disk space. Ideal for floppy based systems.
mTCP_2023-03-31_extras.zip Alternative binary versions Alternative binaries; just has the BIOS screeen writes only version of HTTPServ at the moment.
mTCP_2023-03-31.pdf User documentation The one true PDF file that will answer all of your questions. Please read me.
mTCP-src_2023-03-31.zip Source code Source code and developer documentation for this release. For elite hardcore developers only.

mTCP NetDrive downloads can be found on the NetDrive page. (Binaries only, for now.)

Release notes can be found at mTCP_2023-03-31_Release_Notes.html.

Known problems / Errata

Support and mailing list

mTCP is a hobby project that I started in 2005. While it is only a hobby project, I take pride in my work. If you have a comment, bug, or suggestion for a feature please email me at mbbrutman at gmail.com. I might ask for further information or a trace from the program you are having trouble with. Your bug reports help me make mTCP better for everybody else.

mTCP now has a mailing list! I plan on using it for announcements about new releases, taking bug reports, and general mTCP support. The mailing list has both an email interface and a web interface. You can view it or sign up at https://groups.google.com/g/mtcp. (Non-Gmail users can also participate using email; see the instructions here.)

If you need a change to make mTCP work better for you I am interested in hearing your requirements. I am willing to write custom code if needed, but instead of charging for that service I suggest making a donation to a local animal shelter of your choice. (I have never seen an over-funded animal shelter.) Contact me with what you need and I'll see what I can do. (And thank you to those who have taken me up on this offer!)

Recent changes

Interested in seeing the source code that lets you talk directly to a packet driver? I have taken the lowest layer of the mTCP code and packaged it with a sample application that shows you how to interface a C program with the software interrupt mechanism used by packet drivers. Check it out here: mTCP_tcpacket.html

Related projects

People have been extending mTCP and sharing their code. Here are some of the mTCP inspired projects that I know of:

Related resources

DOS TCP/IP Networking with Packet Drivers    A detailed tutorial on packet drivers and how they work.
Wireless Networking for Classic Machines    Use a small travel router to get your old machines using wired Ethernet onto WiFi.
Packet Driver specification    The PC/TCP Packet Driver Specification hosted by Crynwr Software.
Crynwr Software Packet Drivers    A large collection of open source packet drivers.
Georg Potthast's collection of Packet Drivers    A collection of more recent packet drivers.
OpenWatcom C/C++ Compiler    The compiler used to build mTCP; runs on several platforms and cross-compiles to 16 bit DOS.

Videos and Blogs!

For developers

Jump in! See the mTCP Programming Sample! The source code zip also includes a PDF file with 26 pages of notes to help get you started.

All of the applications use the mTCP TCP/IP library which is designed for high performance even on small, slower machines. The code is written in a combination of C++ and assembler. The style of coding is more like "C with classes" to improve the structure of the code with assembler being used in limited areas to improve the performance. The source code is fairly well commented. You can look at it as a framework for writing TCP/IP applications for DOS, complete with plenty of examples.

Features include ARP, UDP, DNS, IP fragments, listen and accept calls for server applications, configurable buffer sizes, automatic retransmit using Karne's algorithm, and run-time switchable tracing for helping you debug. Features may be compiled in or out as needed so that you can minimize the overhead of the TCP/IP library and include only the features that you need. mTCP does not use floating point operations, avoiding the code bloat of the floating point emulation library.

mTCP is designed to be robust. DOS is a challenging environment to work in because quite frankly, it is not much of an operating system. mTCP attempts to minimize problems by using defensive programming techniques. Not every programming error can be prevented, but the library tries to help you where it can. For example, to prevent fragmentation in the DOS heap mTCP generally preallocates pools of objects and manages the objects instead of repeatedly allocating and freeing memory using the DOS heap. The FTP server and the IRC client have been demonstrated to run for days without leaking memory or crashing the machine. The HTTP server has run for months at a time.

High performance is a key feature of mTCP. The library is written to avoid excess memory copying wherever possible. Assembler is used on some code for both performance and to avoid making expensive library calls that will just invoke BIOS or DOS routines anyway. For the ultimate in performance you can choose to handle raw packets directly in your application layer code, or you can use higher level "send" and "recv" type calls instead. The ability to adjust buffer sizes allows you to balance speed versus memory footprint. Want to see how fast mTCP is? Here are some performance measurements for FTP and for raw socket performance: mTCP Performance notes

mTCP is only available as a library that you link with your application. A TSR version that can be used by software interrupt is not available. While a TSR version would allow more programming environments access to TCP/IP services, it is a much more difficult environment to work in and debug. Performance would also suffer too. It would be an interesting project though - if you want to collaborate on the design for a TSR version of mTCP please contact me.

(For a TCP/IP stack that loads as a TSR see Trumpet by Peter Tattam. Trumpet can usually be found by searching for TCPDRV or NTCPDRV. WATTCP is an older, more widespread TCP/IP stack that can be used as an alternative to mTCP. Neither Trumpet or WATTCP are actively maintained.)

mTCP is developed using Open Watcom, an open source tool chain that supports C, C++, and assembler. Open Watcom is flexible and generates reasonably optimized code. Open Watcom also runs under modern environments such as Windows and Linux so you can develop in the environment of your choice while still generating 16 bit DOS executables. Open Watcom is regularly updated; mTCP is using version 1.9 which was released in June 2010. Porting to other environments such as Borland Turbo C++ for DOS is possible without too much pain. (mTCP originally started with Borland Turbo C++ for DOS.)



mTCP is brought to you by Brutman Heavy Industries ...


Created July 29th, 2008, Last updated December 10th, 2023
(C)opyright Michael B. Brutman, mbbrutman at gmail.com