├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── README.md ├── ad_dos.cpp ├── ad_dos.h ├── ad_linux.cpp ├── ad_linux.h ├── ad_win32.cpp ├── ad_win32.h ├── alter.cpp ├── ax25k.cpp ├── ax_util.cpp ├── ax_util.h ├── baycom.h ├── bcast.cpp ├── bcm.dsk ├── bcm.prj ├── bcm32.dsp ├── bcm32.dsw ├── bcm32.ico ├── bcm32.opt ├── bcm32.rc.template ├── bcm32gitversion └── bcm32gitversion.dsp ├── bids.cpp ├── binsplit.cpp ├── binsplit.h ├── cfgflex.cpp ├── changes.txt ├── charset.cpp ├── check.cpp ├── ci ├── build-dos.bat ├── build-win32.bat ├── deploy-release.sh └── ghr ├── cmd.cpp ├── color.h ├── config.h ├── convers.cpp ├── convert.cpp ├── crc.cpp ├── crc.h ├── crctab.h ├── crontab.cpp ├── d_color.cpp ├── d_dialog.cpp ├── d_flex.cpp ├── d_mouse.asm ├── d_proz.asm ├── d_putwin.cpp ├── d_video.cpp ├── d_wedit.cpp ├── d_window.cpp ├── d_window.h ├── desktop.cpp ├── didadit.cpp ├── didadit.h ├── dir.cpp ├── doc ├── OpenBCM_1.07_Docu_English_29.12.2006.pdf └── OpenBCM_1.07_Doku_Deutsch_10.07.2006.pdf ├── ext ├── _sed.exe ├── libiconv2.dll ├── libintl3.dll └── regex2.dll ├── extract.cpp ├── fbb.h ├── fileio.cpp ├── fileio.h ├── filesurf.cpp ├── filesurf.h ├── flexappl.h ├── flexappl.lib ├── ftp.cpp ├── fts.cpp ├── fwd.cpp ├── fwd_afwd.cpp ├── fwd_fbb.cpp ├── fwd_file.cpp ├── fwd_rli.cpp ├── gitversion.bat ├── grep.cpp ├── grep.h ├── hadr.cpp ├── help.cpp ├── http.cpp ├── huffman.cpp ├── huffman.h ├── hufftab.h ├── init.cpp ├── inout.cpp ├── interfac.cpp ├── l1axip_l.cpp ├── l1kiss_l.cpp ├── l1main_l.cpp ├── l2_appl.h ├── l2host.cpp ├── l2host.h ├── l2info.cpp ├── l2interf.cpp ├── l2main_l.cpp ├── l2mhlist.cpp ├── l2proto.cpp ├── l2util.cpp ├── l_flex.cpp ├── layer1.h ├── layer2.h ├── login.cpp ├── macro.cpp ├── mail.h ├── mailserv.cpp ├── mailserv.h ├── main.cpp ├── makefile ├── makefile.nol2 ├── md2md5.cpp ├── md2md5.h ├── mdpw.cpp ├── memalloc.cpp ├── morse.cpp ├── morse.h ├── msg.cpp ├── msg.h ├── msg ├── examples_dl.zip ├── examples_dla.zip ├── examples_gb.zip ├── examples_pl.zip ├── examples_rus.zip ├── help.ct ├── help.dl ├── help.ea ├── help.ff ├── help.gb ├── help.ha ├── help.hrv ├── help.ja ├── help.ok ├── help.om ├── help.pl ├── help.rus ├── help.s5 ├── help.ta ├── help.trk ├── messages.bad ├── messages.bay ├── messages.bw ├── messages.ct ├── messages.dl ├── messages.dla ├── messages.ea ├── messages.ff ├── messages.gb ├── messages.ha ├── messages.hrv ├── messages.i ├── messages.ja ├── messages.kl ├── messages.lx ├── messages.nl ├── messages.ok ├── messages.om ├── messages.pf ├── messages.pl ├── messages.rus ├── messages.s5 ├── messages.ta ├── messages.trk └── readme.txt ├── nntp.cpp ├── obcm.spec ├── oldmaili.cpp ├── ping.cpp ├── pocsag.cpp ├── pocsag.h ├── pop3.cpp ├── pop3.h ├── purge.cpp ├── pw.cpp ├── radio.cpp ├── read.cpp ├── readme.1st ├── reorg.cpp ├── resource.h ├── resrc1.h ├── runutils.cpp ├── sema.cpp ├── send.cpp ├── service.cpp ├── smtp.cpp ├── socket.cpp ├── sysop.cpp ├── task.cpp ├── telephon.cpp ├── tell.cpp ├── terminal.cpp ├── time.cpp ├── timerint.cpp ├── tnc.cpp ├── trace.cpp ├── transfer.cpp ├── tree.cpp ├── tty.cpp ├── usercomp.cpp ├── usercomp.h ├── users.cpp ├── utils.cpp ├── vidinit.cpp ├── wp.cpp ├── wx.cpp ├── wx.h ├── yapp.cpp └── yapp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/README.md -------------------------------------------------------------------------------- /ad_dos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ad_dos.cpp -------------------------------------------------------------------------------- /ad_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ad_dos.h -------------------------------------------------------------------------------- /ad_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ad_linux.cpp -------------------------------------------------------------------------------- /ad_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ad_linux.h -------------------------------------------------------------------------------- /ad_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ad_win32.cpp -------------------------------------------------------------------------------- /ad_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ad_win32.h -------------------------------------------------------------------------------- /alter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/alter.cpp -------------------------------------------------------------------------------- /ax25k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ax25k.cpp -------------------------------------------------------------------------------- /ax_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ax_util.cpp -------------------------------------------------------------------------------- /ax_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ax_util.h -------------------------------------------------------------------------------- /baycom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/baycom.h -------------------------------------------------------------------------------- /bcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcast.cpp -------------------------------------------------------------------------------- /bcm.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm.dsk -------------------------------------------------------------------------------- /bcm.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm.prj -------------------------------------------------------------------------------- /bcm32.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm32.dsp -------------------------------------------------------------------------------- /bcm32.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm32.dsw -------------------------------------------------------------------------------- /bcm32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm32.ico -------------------------------------------------------------------------------- /bcm32.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm32.opt -------------------------------------------------------------------------------- /bcm32.rc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm32.rc.template -------------------------------------------------------------------------------- /bcm32gitversion/bcm32gitversion.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bcm32gitversion/bcm32gitversion.dsp -------------------------------------------------------------------------------- /bids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/bids.cpp -------------------------------------------------------------------------------- /binsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/binsplit.cpp -------------------------------------------------------------------------------- /binsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/binsplit.h -------------------------------------------------------------------------------- /cfgflex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/cfgflex.cpp -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/changes.txt -------------------------------------------------------------------------------- /charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/charset.cpp -------------------------------------------------------------------------------- /check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/check.cpp -------------------------------------------------------------------------------- /ci/build-dos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ci/build-dos.bat -------------------------------------------------------------------------------- /ci/build-win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ci/build-win32.bat -------------------------------------------------------------------------------- /ci/deploy-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ci/deploy-release.sh -------------------------------------------------------------------------------- /ci/ghr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ci/ghr -------------------------------------------------------------------------------- /cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/cmd.cpp -------------------------------------------------------------------------------- /color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/color.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/config.h -------------------------------------------------------------------------------- /convers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/convers.cpp -------------------------------------------------------------------------------- /convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/convert.cpp -------------------------------------------------------------------------------- /crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/crc.cpp -------------------------------------------------------------------------------- /crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/crc.h -------------------------------------------------------------------------------- /crctab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/crctab.h -------------------------------------------------------------------------------- /crontab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/crontab.cpp -------------------------------------------------------------------------------- /d_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_color.cpp -------------------------------------------------------------------------------- /d_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_dialog.cpp -------------------------------------------------------------------------------- /d_flex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_flex.cpp -------------------------------------------------------------------------------- /d_mouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_mouse.asm -------------------------------------------------------------------------------- /d_proz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_proz.asm -------------------------------------------------------------------------------- /d_putwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_putwin.cpp -------------------------------------------------------------------------------- /d_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_video.cpp -------------------------------------------------------------------------------- /d_wedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_wedit.cpp -------------------------------------------------------------------------------- /d_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_window.cpp -------------------------------------------------------------------------------- /d_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/d_window.h -------------------------------------------------------------------------------- /desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/desktop.cpp -------------------------------------------------------------------------------- /didadit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/didadit.cpp -------------------------------------------------------------------------------- /didadit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/didadit.h -------------------------------------------------------------------------------- /dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/dir.cpp -------------------------------------------------------------------------------- /doc/OpenBCM_1.07_Docu_English_29.12.2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/doc/OpenBCM_1.07_Docu_English_29.12.2006.pdf -------------------------------------------------------------------------------- /doc/OpenBCM_1.07_Doku_Deutsch_10.07.2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/doc/OpenBCM_1.07_Doku_Deutsch_10.07.2006.pdf -------------------------------------------------------------------------------- /ext/_sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ext/_sed.exe -------------------------------------------------------------------------------- /ext/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ext/libiconv2.dll -------------------------------------------------------------------------------- /ext/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ext/libintl3.dll -------------------------------------------------------------------------------- /ext/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ext/regex2.dll -------------------------------------------------------------------------------- /extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/extract.cpp -------------------------------------------------------------------------------- /fbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fbb.h -------------------------------------------------------------------------------- /fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fileio.cpp -------------------------------------------------------------------------------- /fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fileio.h -------------------------------------------------------------------------------- /filesurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/filesurf.cpp -------------------------------------------------------------------------------- /filesurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/filesurf.h -------------------------------------------------------------------------------- /flexappl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/flexappl.h -------------------------------------------------------------------------------- /flexappl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/flexappl.lib -------------------------------------------------------------------------------- /ftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ftp.cpp -------------------------------------------------------------------------------- /fts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fts.cpp -------------------------------------------------------------------------------- /fwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fwd.cpp -------------------------------------------------------------------------------- /fwd_afwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fwd_afwd.cpp -------------------------------------------------------------------------------- /fwd_fbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fwd_fbb.cpp -------------------------------------------------------------------------------- /fwd_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fwd_file.cpp -------------------------------------------------------------------------------- /fwd_rli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/fwd_rli.cpp -------------------------------------------------------------------------------- /gitversion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/gitversion.bat -------------------------------------------------------------------------------- /grep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/grep.cpp -------------------------------------------------------------------------------- /grep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/grep.h -------------------------------------------------------------------------------- /hadr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/hadr.cpp -------------------------------------------------------------------------------- /help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/help.cpp -------------------------------------------------------------------------------- /http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/http.cpp -------------------------------------------------------------------------------- /huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/huffman.cpp -------------------------------------------------------------------------------- /huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/huffman.h -------------------------------------------------------------------------------- /hufftab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/hufftab.h -------------------------------------------------------------------------------- /init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/init.cpp -------------------------------------------------------------------------------- /inout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/inout.cpp -------------------------------------------------------------------------------- /interfac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/interfac.cpp -------------------------------------------------------------------------------- /l1axip_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l1axip_l.cpp -------------------------------------------------------------------------------- /l1kiss_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l1kiss_l.cpp -------------------------------------------------------------------------------- /l1main_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l1main_l.cpp -------------------------------------------------------------------------------- /l2_appl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2_appl.h -------------------------------------------------------------------------------- /l2host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2host.cpp -------------------------------------------------------------------------------- /l2host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2host.h -------------------------------------------------------------------------------- /l2info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2info.cpp -------------------------------------------------------------------------------- /l2interf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2interf.cpp -------------------------------------------------------------------------------- /l2main_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2main_l.cpp -------------------------------------------------------------------------------- /l2mhlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2mhlist.cpp -------------------------------------------------------------------------------- /l2proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2proto.cpp -------------------------------------------------------------------------------- /l2util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l2util.cpp -------------------------------------------------------------------------------- /l_flex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/l_flex.cpp -------------------------------------------------------------------------------- /layer1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/layer1.h -------------------------------------------------------------------------------- /layer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/layer2.h -------------------------------------------------------------------------------- /login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/login.cpp -------------------------------------------------------------------------------- /macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/macro.cpp -------------------------------------------------------------------------------- /mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/mail.h -------------------------------------------------------------------------------- /mailserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/mailserv.cpp -------------------------------------------------------------------------------- /mailserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/mailserv.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/main.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/makefile -------------------------------------------------------------------------------- /makefile.nol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/makefile.nol2 -------------------------------------------------------------------------------- /md2md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/md2md5.cpp -------------------------------------------------------------------------------- /md2md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/md2md5.h -------------------------------------------------------------------------------- /mdpw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/mdpw.cpp -------------------------------------------------------------------------------- /memalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/memalloc.cpp -------------------------------------------------------------------------------- /morse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/morse.cpp -------------------------------------------------------------------------------- /morse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/morse.h -------------------------------------------------------------------------------- /msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg.cpp -------------------------------------------------------------------------------- /msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg.h -------------------------------------------------------------------------------- /msg/examples_dl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/examples_dl.zip -------------------------------------------------------------------------------- /msg/examples_dla.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/examples_dla.zip -------------------------------------------------------------------------------- /msg/examples_gb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/examples_gb.zip -------------------------------------------------------------------------------- /msg/examples_pl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/examples_pl.zip -------------------------------------------------------------------------------- /msg/examples_rus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/examples_rus.zip -------------------------------------------------------------------------------- /msg/help.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ct -------------------------------------------------------------------------------- /msg/help.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.dl -------------------------------------------------------------------------------- /msg/help.ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ea -------------------------------------------------------------------------------- /msg/help.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ff -------------------------------------------------------------------------------- /msg/help.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.gb -------------------------------------------------------------------------------- /msg/help.ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ha -------------------------------------------------------------------------------- /msg/help.hrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.hrv -------------------------------------------------------------------------------- /msg/help.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ja -------------------------------------------------------------------------------- /msg/help.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ok -------------------------------------------------------------------------------- /msg/help.om: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.om -------------------------------------------------------------------------------- /msg/help.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.pl -------------------------------------------------------------------------------- /msg/help.rus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.rus -------------------------------------------------------------------------------- /msg/help.s5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.s5 -------------------------------------------------------------------------------- /msg/help.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.ta -------------------------------------------------------------------------------- /msg/help.trk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/help.trk -------------------------------------------------------------------------------- /msg/messages.bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.bad -------------------------------------------------------------------------------- /msg/messages.bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.bay -------------------------------------------------------------------------------- /msg/messages.bw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.bw -------------------------------------------------------------------------------- /msg/messages.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ct -------------------------------------------------------------------------------- /msg/messages.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.dl -------------------------------------------------------------------------------- /msg/messages.dla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.dla -------------------------------------------------------------------------------- /msg/messages.ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ea -------------------------------------------------------------------------------- /msg/messages.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ff -------------------------------------------------------------------------------- /msg/messages.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.gb -------------------------------------------------------------------------------- /msg/messages.ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ha -------------------------------------------------------------------------------- /msg/messages.hrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.hrv -------------------------------------------------------------------------------- /msg/messages.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.i -------------------------------------------------------------------------------- /msg/messages.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ja -------------------------------------------------------------------------------- /msg/messages.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.kl -------------------------------------------------------------------------------- /msg/messages.lx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.lx -------------------------------------------------------------------------------- /msg/messages.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.nl -------------------------------------------------------------------------------- /msg/messages.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ok -------------------------------------------------------------------------------- /msg/messages.om: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.om -------------------------------------------------------------------------------- /msg/messages.pf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.pf -------------------------------------------------------------------------------- /msg/messages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.pl -------------------------------------------------------------------------------- /msg/messages.rus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.rus -------------------------------------------------------------------------------- /msg/messages.s5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.s5 -------------------------------------------------------------------------------- /msg/messages.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.ta -------------------------------------------------------------------------------- /msg/messages.trk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/messages.trk -------------------------------------------------------------------------------- /msg/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/msg/readme.txt -------------------------------------------------------------------------------- /nntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/nntp.cpp -------------------------------------------------------------------------------- /obcm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/obcm.spec -------------------------------------------------------------------------------- /oldmaili.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/oldmaili.cpp -------------------------------------------------------------------------------- /ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/ping.cpp -------------------------------------------------------------------------------- /pocsag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/pocsag.cpp -------------------------------------------------------------------------------- /pocsag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/pocsag.h -------------------------------------------------------------------------------- /pop3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/pop3.cpp -------------------------------------------------------------------------------- /pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/pop3.h -------------------------------------------------------------------------------- /purge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/purge.cpp -------------------------------------------------------------------------------- /pw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/pw.cpp -------------------------------------------------------------------------------- /radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/radio.cpp -------------------------------------------------------------------------------- /read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/read.cpp -------------------------------------------------------------------------------- /readme.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/readme.1st -------------------------------------------------------------------------------- /reorg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/reorg.cpp -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/resource.h -------------------------------------------------------------------------------- /resrc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/resrc1.h -------------------------------------------------------------------------------- /runutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/runutils.cpp -------------------------------------------------------------------------------- /sema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/sema.cpp -------------------------------------------------------------------------------- /send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/send.cpp -------------------------------------------------------------------------------- /service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/service.cpp -------------------------------------------------------------------------------- /smtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/smtp.cpp -------------------------------------------------------------------------------- /socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/socket.cpp -------------------------------------------------------------------------------- /sysop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/sysop.cpp -------------------------------------------------------------------------------- /task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/task.cpp -------------------------------------------------------------------------------- /telephon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/telephon.cpp -------------------------------------------------------------------------------- /tell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/tell.cpp -------------------------------------------------------------------------------- /terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/terminal.cpp -------------------------------------------------------------------------------- /time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/time.cpp -------------------------------------------------------------------------------- /timerint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/timerint.cpp -------------------------------------------------------------------------------- /tnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/tnc.cpp -------------------------------------------------------------------------------- /trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/trace.cpp -------------------------------------------------------------------------------- /transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/transfer.cpp -------------------------------------------------------------------------------- /tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/tree.cpp -------------------------------------------------------------------------------- /tty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/tty.cpp -------------------------------------------------------------------------------- /usercomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/usercomp.cpp -------------------------------------------------------------------------------- /usercomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/usercomp.h -------------------------------------------------------------------------------- /users.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/users.cpp -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/utils.cpp -------------------------------------------------------------------------------- /vidinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/vidinit.cpp -------------------------------------------------------------------------------- /wp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/wp.cpp -------------------------------------------------------------------------------- /wx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/wx.cpp -------------------------------------------------------------------------------- /wx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/wx.h -------------------------------------------------------------------------------- /yapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/yapp.cpp -------------------------------------------------------------------------------- /yapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe5hpm/openBCM/HEAD/yapp.h --------------------------------------------------------------------------------