lpsantil / dos-push-notifications-tsr

A TSR application that allows for sending "push notifications" to MS-DOS!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MS-DOS Push TSR

Building

  1. Download and install Open Watcom 1.9
  2. Download and install NASM
  3. From there, it's just wmake which will produce a binary called tsrpush.exe

Running

Simple!

  1. Load a Packet Driver
  2. Start up tsrpush.exe on your MS-DOS system by passing in the Packet Driver Interrupt Vector Number and a UDP port for listening, i.e. tsrpush.exe 0x65 20000 (use Packet Driver at Interrupt 0x65 and listen on UDP Port 20000)

Unloading

Simple!

  1. Just type tsrpush.exe

Testing

See the send_message.py script in the test directory. Change the broadcast address to that of your network and the message accordingly. Run it, and you will see a push message in MS-DOS.

Known Issues

  1. Will not work with all programs resident (uses pretty primitive screen control)
  2. Does not appear to receive new packets after entering and leaving protected mode (i.e. Windows 3.11)
  3. Does not support ARP, DNS, or TCP (only supports UDP and access via IP address)
  4. Only supports receiving broadcast packets and does not verify the broadcast sender (should update configuration to properly use mTCP's parseEnv, do away with passing in the packet driver interupt vector, and assign an IP address and verify broadcast address)
  5. Does not send a reply to acknowledge a UDP packet

About

A TSR application that allows for sending "push notifications" to MS-DOS!


Languages

Language:C 44.4%Language:Assembly 39.2%Language:Makefile 15.7%Language:Python 0.7%