├── .gitignore ├── 3rdparty ├── Watt-32 │ ├── .gitattributes │ ├── .gitignore │ ├── README │ ├── README.TOO │ ├── README.md │ ├── TODO │ ├── appveyor-script.bat │ ├── appveyor-script.py │ ├── appveyor.yml │ ├── bin │ │ ├── IP2Location.c │ │ ├── IP2Location.h │ │ ├── bcc_dos.mak │ │ ├── bcc_win.mak │ │ ├── blather.c │ │ ├── bping.c │ │ ├── causeway.mak │ │ ├── clang.mak │ │ ├── common.mak │ │ ├── cookie.c │ │ ├── country.c │ │ ├── cygwin.mak │ │ ├── dayserv.c │ │ ├── daytime.c │ │ ├── digmars.mak │ │ ├── dj_all.mak │ │ ├── djcommon.mak │ │ ├── djgpp.mak │ │ ├── djgpp_win.mak │ │ ├── dos32a.mak │ │ ├── dos4gw.mak │ │ ├── dxe_tst.c │ │ ├── dynip.cfg │ │ ├── eth-wake.c │ │ ├── ethers │ │ ├── finger.c │ │ ├── geoip.c │ │ ├── geoip.h │ │ ├── highc.mak │ │ ├── host.c │ │ ├── hosts │ │ ├── hosts6 │ │ ├── htget.c │ │ ├── ident.c │ │ ├── ladsoft.mak │ │ ├── lcc.mak │ │ ├── lister.c │ │ ├── lpq.c │ │ ├── lpr.c │ │ ├── mingw32.mak │ │ ├── mingw64.mak │ │ ├── networks │ │ ├── ntime.c │ │ ├── pellesc.mak │ │ ├── ph.c │ │ ├── ping.c │ │ ├── pmodew.mak │ │ ├── popdump.c │ │ ├── powerpak.mak │ │ ├── ppp.cfg │ │ ├── pppoe.cfg │ │ ├── protocol │ │ ├── revip.c │ │ ├── rexec.c │ │ ├── rpc.cfg │ │ ├── services │ │ ├── slip.cfg │ │ ├── smb.cfg │ │ ├── stat.c │ │ ├── tcpinfo.c │ │ ├── tcpport.c │ │ ├── tcptalk.c │ │ ├── tiny.c │ │ ├── tracert.c │ │ ├── tree.h │ │ ├── uname.c │ │ ├── visualc.mak │ │ ├── vlsm.c │ │ ├── w32-test.c │ │ ├── watcom.mak │ │ ├── wattcp.cfg │ │ ├── wc_win.mak │ │ ├── wccommon.mak │ │ ├── wcwindll.mak │ │ ├── wdosx.mak │ │ ├── wdosx_bc.mak │ │ ├── wdosx_dm.mak │ │ ├── whois.c │ │ ├── wol.c │ │ ├── x32_stk.c │ │ └── x32vm.mak │ ├── changes │ ├── dosemu.bat │ ├── inc │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── check_hdr.mak │ │ ├── copying.bsd │ │ ├── err.h │ │ ├── net │ │ │ ├── bpf.h │ │ │ ├── bpfdesc.h │ │ │ ├── ethertyp.h │ │ │ ├── if.h │ │ │ ├── if_arc.h │ │ │ ├── if_arp.h │ │ │ ├── if_atm.h │ │ │ ├── if_dl.h │ │ │ ├── if_ether.h │ │ │ ├── if_fddi.h │ │ │ ├── if_llc.h │ │ │ ├── if_media.h │ │ │ ├── if_packe.h │ │ │ ├── if_packet.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppva.h │ │ │ ├── if_slvar.h │ │ │ ├── if_strip.h │ │ │ ├── if_tun.h │ │ │ ├── if_types.h │ │ │ ├── netisr.h │ │ │ ├── pfil.h │ │ │ ├── pfkeyv2.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp_defs.h │ │ │ ├── radix.h │ │ │ ├── raw_cb.h │ │ │ ├── route.h │ │ │ ├── slcompre.h │ │ │ └── slip.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── icmp6.h │ │ │ ├── icmp_var.h │ │ │ ├── if_ether.h │ │ │ ├── if_fddi.h │ │ │ ├── igmp.h │ │ │ ├── igmp_var.h │ │ │ ├── in.h │ │ │ ├── in_pcb.h │ │ │ ├── in_systm.h │ │ │ ├── in_var.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_fw.h │ │ │ ├── ip_icmp.h │ │ │ ├── ip_mrout.h │ │ │ ├── ip_var.h │ │ │ ├── ipv6.h │ │ │ ├── tcp.h │ │ │ ├── tcp_debu.h │ │ │ ├── tcp_fsm.h │ │ │ ├── tcp_scor.h │ │ │ ├── tcp_seq.h │ │ │ ├── tcp_time.h │ │ │ ├── tcp_var.h │ │ │ ├── tcpip.h │ │ │ ├── udp.h │ │ │ └── udp_var.h │ │ ├── netinet6 │ │ │ ├── ah.h │ │ │ ├── ah6.h │ │ │ ├── esp.h │ │ │ ├── esp6.h │ │ │ ├── esp_rijn.h │ │ │ ├── in6.h │ │ │ ├── in6_gif.h │ │ │ ├── in6_ifat.h │ │ │ ├── in6_pcb.h │ │ │ ├── in6_pref.h │ │ │ ├── in6_var.h │ │ │ ├── ip6.h │ │ │ ├── ip6_ecn.h │ │ │ ├── ip6_fw.h │ │ │ ├── ip6_mrou.h │ │ │ ├── ip6_var.h │ │ │ ├── ip6proto.h │ │ │ ├── ipcomp.h │ │ │ ├── ipcomp6.h │ │ │ ├── ipsec.h │ │ │ ├── ipsec6.h │ │ │ ├── mld6_var.h │ │ │ ├── nd6.h │ │ │ ├── pim6.h │ │ │ ├── pim6_var.h │ │ │ ├── raw_ip6.h │ │ │ ├── scope6_v.h │ │ │ ├── tcp6_var.h │ │ │ └── udp6_var.h │ │ ├── poll.h │ │ ├── protocol │ │ │ ├── dumprest.h │ │ │ ├── routed.h │ │ │ ├── rwhod.h │ │ │ ├── talkd.h │ │ │ └── timed.h │ │ ├── resolv.h │ │ ├── rpcsvc │ │ │ ├── yp_prot.h │ │ │ └── ypclnt.h │ │ ├── sys │ │ │ ├── cdefs.h │ │ │ ├── djgpp.err │ │ │ ├── errno.h │ │ │ ├── ioctl.h │ │ │ ├── mbuf.h │ │ │ ├── pack_off.h │ │ │ ├── pack_on.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── queue.h │ │ │ ├── select.h │ │ │ ├── so_ioctl.h │ │ │ ├── socket.h │ │ │ ├── swap.h │ │ │ ├── syslog.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── w32api.h │ │ │ ├── werrno.h │ │ │ ├── whide.h │ │ │ ├── wtime.h │ │ │ └── wtypes.h │ │ ├── syslog.h │ │ ├── tcp.h │ │ └── w32-fakes │ │ │ ├── winsock.h │ │ │ ├── winsock2.h │ │ │ └── ws2tcpip.h │ ├── install │ ├── lib │ │ ├── DXE │ │ │ └── DELETE.ME │ │ ├── x64 │ │ │ └── README │ │ └── x86 │ │ │ └── README │ ├── src │ │ ├── Attic │ │ │ ├── README.md │ │ │ ├── chksum0.S │ │ │ ├── chksum0.asm │ │ │ ├── chksum0.nas │ │ │ ├── chksum0.tas │ │ │ ├── chksum0.wat │ │ │ ├── rs232.c │ │ │ └── rs232.h │ │ ├── Python │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── _watt32.rc │ │ │ └── runme.py │ │ ├── accept.c │ │ ├── asmpkt.asm │ │ ├── asmpkt.h │ │ ├── asmpkt.nas │ │ ├── atxmega.mak │ │ ├── bind.c │ │ ├── bsddbug.c │ │ ├── bsddbug.h │ │ ├── bsdname.c │ │ ├── bsdname.h │ │ ├── btrace.h │ │ ├── btree.c │ │ ├── btree.h │ │ ├── bugtrap.h │ │ ├── build │ │ │ └── djgpp │ │ │ │ └── syserr.c │ │ ├── chksum.c │ │ ├── chksum.h │ │ ├── close.c │ │ ├── config.h │ │ ├── configur.bat │ │ ├── configur.sh │ │ ├── connect.c │ │ ├── copyrigh.h │ │ ├── country.c │ │ ├── cpp_filter.mak │ │ ├── cppcheck.mak │ │ ├── cpuid.c │ │ ├── cpumodel.S │ │ ├── cpumodel.asm │ │ ├── cpumodel.h │ │ ├── cpumodel.nas │ │ ├── crc.c │ │ ├── crit.c │ │ ├── djgpp.mak │ │ ├── doxyfile │ │ ├── dynip.c │ │ ├── dynip.h │ │ ├── echo.c │ │ ├── echo.h │ │ ├── enum_cp.c │ │ ├── fcntl.c │ │ ├── ffs.nas │ │ ├── fortify.c │ │ ├── fortify.h │ │ ├── fsext.c │ │ ├── get_ai.c │ │ ├── get_ip.c │ │ ├── get_ni.c │ │ ├── get_xby.h │ │ ├── get_xbyr.c │ │ ├── geteth.c │ │ ├── gethost.c │ │ ├── gethost6.c │ │ ├── getname.c │ │ ├── getnet.c │ │ ├── getopt.c │ │ ├── getprot.c │ │ ├── getput.c │ │ ├── getserv.c │ │ ├── gettod.c │ │ ├── gettod.h │ │ ├── hello.c │ │ ├── highc.c │ │ ├── iconv │ │ │ ├── ascii.h │ │ │ ├── big5.h │ │ │ ├── cp1046.h │ │ │ ├── cp1124.h │ │ │ ├── cp1125.h │ │ │ ├── cp1129.h │ │ │ ├── cp1133.h │ │ │ ├── cp1161.h │ │ │ ├── cp1162.h │ │ │ ├── cp1163.h │ │ │ ├── cp1250.h │ │ │ ├── cp1251.h │ │ │ ├── cp1252.h │ │ │ ├── cp1253.h │ │ │ ├── cp1254.h │ │ │ ├── cp1255.h │ │ │ ├── cp1256.h │ │ │ ├── cp1257.h │ │ │ ├── cp1258.h │ │ │ ├── cp437.h │ │ │ ├── cp737.h │ │ │ ├── cp775.h │ │ │ ├── cp850.h │ │ │ ├── cp852.h │ │ │ ├── cp853.h │ │ │ ├── cp855.h │ │ │ ├── cp856.h │ │ │ ├── cp857.h │ │ │ ├── cp858.h │ │ │ ├── cp860.h │ │ │ ├── cp861.h │ │ │ ├── cp862.h │ │ │ ├── cp863.h │ │ │ ├── cp864.h │ │ │ ├── cp865.h │ │ │ ├── cp866.h │ │ │ ├── cp869.h │ │ │ ├── cp874.h │ │ │ ├── cp922.h │ │ │ ├── cp932.h │ │ │ ├── cp932ext.h │ │ │ ├── cp936ext.h │ │ │ ├── cp943.h │ │ │ ├── cp949.h │ │ │ ├── cp950.h │ │ │ ├── cp950ext.h │ │ │ ├── flushwc.h │ │ │ ├── jisx0201.h │ │ │ ├── jisx0208.h │ │ │ ├── ksc5601.h │ │ │ ├── uhc_1.h │ │ │ ├── uhc_2.h │ │ │ └── vietcomb.h │ │ ├── idna.c │ │ ├── idna.h │ │ ├── ioctl.c │ │ ├── ioport.h │ │ ├── ip4_frag.c │ │ ├── ip4_frag.h │ │ ├── ip4_in.c │ │ ├── ip4_in.h │ │ ├── ip4_out.c │ │ ├── ip4_out.h │ │ ├── ip6_in.c │ │ ├── ip6_in.h │ │ ├── ip6_out.c │ │ ├── ip6_out.h │ │ ├── ip_info.c │ │ ├── lang.c │ │ ├── lang.l │ │ ├── language.c │ │ ├── language.h │ │ ├── linkaddr.c │ │ ├── lint.mak │ │ ├── listen.c │ │ ├── lookup.c │ │ ├── loopback.c │ │ ├── loopback.h │ │ ├── make-oui.py │ │ ├── makefile.all │ │ ├── misc.c │ │ ├── misc.h │ │ ├── misc_str.c │ │ ├── misc_str.h │ │ ├── mkimp.sed │ │ ├── netaddr.c │ │ ├── netaddr.h │ │ ├── netback.c │ │ ├── neterr.c │ │ ├── nettime.c │ │ ├── nochkstk.h │ │ ├── nsapaddr.c │ │ ├── oldstuff.c │ │ ├── packet32.c │ │ ├── packet32.h │ │ ├── pc_cbrk.c │ │ ├── pcarp.c │ │ ├── pcarp.h │ │ ├── pcbootp.c │ │ ├── pcbootp.h │ │ ├── pcbuf.c │ │ ├── pcbuf.h │ │ ├── pcconfig.c │ │ ├── pcconfig.h │ │ ├── pcdbug.c │ │ ├── pcdbug.h │ │ ├── pcdbug.orig.c │ │ ├── pcdhcp.c │ │ ├── pcdhcp.h │ │ ├── pcdns.c │ │ ├── pcdns.h │ │ ├── pcicmp.c │ │ ├── pcicmp.h │ │ ├── pcicmp6.c │ │ ├── pcicmp6.h │ │ ├── pcigmp.c │ │ ├── pcigmp.h │ │ ├── pcintr.c │ │ ├── pcping.c │ │ ├── pcpkt.c │ │ ├── pcpkt.h │ │ ├── pcpkt2.c │ │ ├── pcpkt32.c │ │ ├── pcpkt32.h │ │ ├── pcqueue.c │ │ ├── pcqueue.h │ │ ├── pcrarp.c │ │ ├── pcrarp.h │ │ ├── pcrecv.c │ │ ├── pcrecv.h │ │ ├── pcsarp.c │ │ ├── pcsarp.h │ │ ├── pcsed.c │ │ ├── pcsed.h │ │ ├── pcslip.c │ │ ├── pcslip.h │ │ ├── pcstat.c │ │ ├── pcstat.h │ │ ├── pctcp.c │ │ ├── pctcp.h │ │ ├── pkt_stub.h │ │ ├── poll.c │ │ ├── ports.c │ │ ├── powerpak.c │ │ ├── powerpak.h │ │ ├── ppp.c │ │ ├── ppp.h │ │ ├── pppoe.c │ │ ├── pppoe.h │ │ ├── presaddr.c │ │ ├── printk.c │ │ ├── printk.h │ │ ├── profile.c │ │ ├── profile.h │ │ ├── punycode.c │ │ ├── punycode.h │ │ ├── qmsg.c │ │ ├── receive.c │ │ ├── register.h │ │ ├── res_comp.c │ │ ├── res_data.c │ │ ├── res_debu.c │ │ ├── res_init.c │ │ ├── res_loc.c │ │ ├── res_mkqu.c │ │ ├── res_quer.c │ │ ├── res_send.c │ │ ├── resolver.h │ │ ├── run.c │ │ ├── run.h │ │ ├── sctp.h │ │ ├── select.c │ │ ├── settod.c │ │ ├── settod.h │ │ ├── shutdown.c │ │ ├── signal.c │ │ ├── sock_dbu.c │ │ ├── sock_in.c │ │ ├── sock_ini.c │ │ ├── sock_ini.h │ │ ├── sock_io.c │ │ ├── sock_prn.c │ │ ├── sock_scn.c │ │ ├── sock_sel.c │ │ ├── socket.c │ │ ├── socket.h │ │ ├── sockopt.c │ │ ├── split.c │ │ ├── split.h │ │ ├── stkwalk.h │ │ ├── stream.c │ │ ├── swsvpkt.c │ │ ├── swsvpkt.h │ │ ├── syslog.c │ │ ├── syslog2.c │ │ ├── syslog2.h │ │ ├── target.h │ │ ├── tcp_fsm.c │ │ ├── tcp_md5.c │ │ ├── teredo64.c │ │ ├── teredo64.h │ │ ├── tests │ │ │ ├── chksum.c │ │ │ ├── configur.bat │ │ │ ├── cpu.c │ │ │ ├── cpu.orig.c │ │ │ ├── cpuspeed.c │ │ │ ├── cyg_kbhit.c │ │ │ ├── eatsock.c │ │ │ ├── fsext.c │ │ │ ├── gtod_tst.c │ │ │ ├── makefile.all │ │ │ ├── makefile.dmc │ │ │ ├── mcast.c │ │ │ ├── packet.c │ │ │ ├── socktest.c │ │ │ ├── swap.c │ │ │ ├── sysdep.h │ │ │ ├── timeit_test.c │ │ │ ├── tiny.c │ │ │ ├── ttime.c │ │ │ ├── ttime2.c │ │ │ ├── udp_srv.c │ │ │ ├── udp_test.c │ │ │ └── watt32.pl │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timer.c │ │ ├── timer.h │ │ ├── transmit.c │ │ ├── udp_rev.c │ │ ├── ufortify.h │ │ ├── version.c │ │ ├── w32_ndis.h │ │ ├── watt-32.ico │ │ ├── watt-32.rc │ │ ├── wattcp.c │ │ ├── wattcp.h │ │ ├── wdpmi.c │ │ ├── wdpmi.h │ │ ├── win_dll.c │ │ ├── win_dll.h │ │ ├── winadinf.c │ │ ├── winadinf.h │ │ ├── winmisc.c │ │ ├── winpkt.c │ │ ├── winpkt.h │ │ ├── x32vm.c │ │ ├── x32vm.h │ │ ├── zadler32.c │ │ ├── zcompres.c │ │ ├── zconf.h │ │ ├── zcrc32.c │ │ ├── zcrc32.h │ │ ├── zdeflate.c │ │ ├── zdeflate.h │ │ ├── zgzio.c │ │ ├── zinfback.c │ │ ├── zinffast.c │ │ ├── zinffast.h │ │ ├── zinffix.h │ │ ├── zinflate.c │ │ ├── zinflate.h │ │ ├── zinftree.c │ │ ├── zinftree.h │ │ ├── zlib.h │ │ ├── zlib │ │ │ ├── inffast.asm │ │ │ ├── inffast.s │ │ │ ├── match.asm │ │ │ ├── match.s │ │ │ ├── readme │ │ │ └── zlib.3 │ │ ├── ztrees.c │ │ ├── ztrees.h │ │ ├── zuncompr.c │ │ ├── zutil.c │ │ └── zutil.h │ ├── thanks │ └── util │ │ ├── bin2c.c │ │ ├── check_EOL.py │ │ ├── dj-errno.mak │ │ ├── dxegen.c │ │ ├── errnos.c │ │ ├── errnos.mak │ │ ├── errnox.mak │ │ ├── linux │ │ └── README │ │ ├── makefile │ │ ├── mkdep.c │ │ ├── mkheads.c │ │ ├── mkimp.c │ │ ├── mkimp.h │ │ ├── mkimp.l │ │ ├── mkimp_gr.y │ │ ├── mklang.c │ │ ├── mkmake.c │ │ ├── pkg-conf.mak │ │ ├── readme │ │ └── sysdep.h ├── config.h ├── ini-20220806 │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── ini.c │ │ └── ini.h ├── mbedtls-2.28.8 │ ├── .gitattributes │ ├── .github │ │ ├── issue_template.md │ │ └── pull_request_template.md │ ├── .gitignore │ ├── .globalrc │ ├── .mypy.ini │ ├── .pylintrc │ ├── .readthedocs.yaml │ ├── .travis.yml │ ├── .uncrustify.cfg │ ├── 3rdparty │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.inc │ │ └── everest │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.inc │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── everest │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ ├── everest.h │ │ │ │ ├── kremlib.h │ │ │ │ ├── kremlib │ │ │ │ ├── FStar_UInt128.h │ │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h │ │ │ │ ├── kremlin │ │ │ │ ├── c_endianness.h │ │ │ │ └── internal │ │ │ │ │ ├── builtin.h │ │ │ │ │ ├── callconv.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── target.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── wasmsupport.h │ │ │ │ ├── vs2010 │ │ │ │ ├── Hacl_Curve25519.h │ │ │ │ ├── inttypes.h │ │ │ │ └── stdbool.h │ │ │ │ └── x25519.h │ │ │ └── library │ │ │ ├── Hacl_Curve25519.c │ │ │ ├── Hacl_Curve25519_joined.c │ │ │ ├── everest.c │ │ │ ├── kremlib │ │ │ ├── FStar_UInt128_extracted.c │ │ │ └── FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c │ │ │ ├── legacy │ │ │ └── Hacl_Curve25519.c │ │ │ └── x25519.c │ ├── BRANCHES.md │ ├── BUGS.md │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── ChangeLog │ ├── DartConfiguration.tcl │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── SECURITY.md │ ├── SUPPORT.md │ ├── configs │ │ ├── README.txt │ │ ├── config-ccm-psk-dtls1_2.h │ │ ├── config-ccm-psk-tls1_2.h │ │ ├── config-mini-tls1_1.h │ │ ├── config-no-entropy.h │ │ ├── config-suite-b.h │ │ ├── config-symmetric-only.h │ │ └── config-thread.h │ ├── dco.txt │ ├── docs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── architecture │ │ │ ├── Makefile │ │ │ ├── mbed-crypto-storage-specification.md │ │ │ ├── psa-crypto-implementation-structure.md │ │ │ └── tls13-experimental.md │ │ ├── conf.py │ │ ├── index.rst │ │ ├── proposed │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── psa-conditional-inclusion-c.md │ │ │ ├── psa-driver-developer-guide.md │ │ │ ├── psa-driver-integration-guide.md │ │ │ └── psa-driver-interface.md │ │ ├── requirements.in │ │ ├── requirements.txt │ │ └── use-psa-crypto.md │ ├── doxygen │ │ ├── input │ │ │ ├── doc_encdec.h │ │ │ ├── doc_hashing.h │ │ │ ├── doc_mainpage.h │ │ │ ├── doc_rng.h │ │ │ ├── doc_ssltls.h │ │ │ ├── doc_tcpip.h │ │ │ └── doc_x509.h │ │ └── mbedtls.doxyfile │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── mbedtls │ │ │ ├── aes.h │ │ │ ├── aesni.h │ │ │ ├── arc4.h │ │ │ ├── aria.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── blowfish.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.h │ │ │ ├── ccm.h │ │ │ ├── certs.h │ │ │ ├── chacha20.h │ │ │ ├── chachapoly.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cipher_internal.h │ │ │ ├── cmac.h │ │ │ ├── compat-1.3.h │ │ │ ├── config.h │ │ │ ├── config_psa.h │ │ │ ├── constant_time.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecjpake.h │ │ │ ├── ecp.h │ │ │ ├── ecp_internal.h │ │ │ ├── entropy.h │ │ │ ├── entropy_poll.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── havege.h │ │ │ ├── hkdf.h │ │ │ ├── hmac_drbg.h │ │ │ ├── md.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── md_internal.h │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── net.h │ │ │ ├── net_sockets.h │ │ │ ├── nist_kw.h │ │ │ ├── oid.h │ │ │ ├── padlock.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pk_internal.h │ │ │ ├── pkcs11.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── platform.h │ │ │ ├── platform_time.h │ │ │ ├── platform_util.h │ │ │ ├── poly1305.h │ │ │ ├── psa_util.h │ │ │ ├── ripemd160.h │ │ │ ├── rsa.h │ │ │ ├── rsa_internal.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── ssl_cookie.h │ │ │ ├── ssl_internal.h │ │ │ ├── ssl_ticket.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ ├── x509_csr.h │ │ │ └── xtea.h │ │ └── psa │ │ │ ├── crypto.h │ │ │ ├── crypto_builtin_composites.h │ │ │ ├── crypto_builtin_primitives.h │ │ │ ├── crypto_compat.h │ │ │ ├── crypto_config.h │ │ │ ├── crypto_driver_common.h │ │ │ ├── crypto_driver_contexts_composites.h │ │ │ ├── crypto_driver_contexts_primitives.h │ │ │ ├── crypto_extra.h │ │ │ ├── crypto_platform.h │ │ │ ├── crypto_se_driver.h │ │ │ ├── crypto_sizes.h │ │ │ ├── crypto_struct.h │ │ │ ├── crypto_types.h │ │ │ └── crypto_values.h │ ├── library │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aesni.c │ │ ├── arc4.c │ │ ├── aria.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── bignum_internal.h │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── ccm.c │ │ ├── certs.c │ │ ├── chacha20.c │ │ ├── chachapoly.c │ │ ├── check_crypto_config.h │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── cmac.c │ │ ├── common.h │ │ ├── constant_time.c │ │ ├── constant_time_internal.h │ │ ├── constant_time_invasive.h │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecjpake.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── ecp_invasive.h │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── error.c │ │ ├── gcm.c │ │ ├── havege.c │ │ ├── hkdf.c │ │ ├── hmac_drbg.c │ │ ├── md.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memory_buffer_alloc.c │ │ ├── mps_common.h │ │ ├── mps_error.h │ │ ├── mps_reader.c │ │ ├── mps_reader.h │ │ ├── mps_trace.c │ │ ├── mps_trace.h │ │ ├── net_sockets.c │ │ ├── nist_kw.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_wrap.c │ │ ├── pkcs11.c │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── platform.c │ │ ├── platform_util.c │ │ ├── poly1305.c │ │ ├── psa_crypto.c │ │ ├── psa_crypto_aead.c │ │ ├── psa_crypto_aead.h │ │ ├── psa_crypto_cipher.c │ │ ├── psa_crypto_cipher.h │ │ ├── psa_crypto_client.c │ │ ├── psa_crypto_core.h │ │ ├── psa_crypto_driver_wrappers.c │ │ ├── psa_crypto_driver_wrappers.h │ │ ├── psa_crypto_ecp.c │ │ ├── psa_crypto_ecp.h │ │ ├── psa_crypto_hash.c │ │ ├── psa_crypto_hash.h │ │ ├── psa_crypto_invasive.h │ │ ├── psa_crypto_its.h │ │ ├── psa_crypto_mac.c │ │ ├── psa_crypto_mac.h │ │ ├── psa_crypto_random_impl.h │ │ ├── psa_crypto_rsa.c │ │ ├── psa_crypto_rsa.h │ │ ├── psa_crypto_se.c │ │ ├── psa_crypto_se.h │ │ ├── psa_crypto_slot_management.c │ │ ├── psa_crypto_slot_management.h │ │ ├── psa_crypto_storage.c │ │ ├── psa_crypto_storage.h │ │ ├── psa_its_file.c │ │ ├── ripemd160.c │ │ ├── rsa.c │ │ ├── rsa_internal.c │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_cli.c │ │ ├── ssl_cookie.c │ │ ├── ssl_msg.c │ │ ├── ssl_srv.c │ │ ├── ssl_ticket.c │ │ ├── ssl_tls.c │ │ ├── ssl_tls13_keys.c │ │ ├── ssl_tls13_keys.h │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509write_crt.c │ │ ├── x509write_csr.c │ │ └── xtea.c │ ├── pkgconfig │ │ ├── CMakeLists.txt │ │ ├── JoinPaths.cmake │ │ ├── mbedcrypto.pc.in │ │ ├── mbedtls.pc.in │ │ └── mbedx509.pc.in │ ├── programs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── aes │ │ │ ├── CMakeLists.txt │ │ │ └── crypt_and_hash.c │ │ ├── demo_common.sh │ │ ├── fuzz │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── corpuses │ │ │ │ ├── client │ │ │ │ ├── dtlsclient │ │ │ │ ├── dtlsserver │ │ │ │ └── server │ │ │ ├── fuzz_client.c │ │ │ ├── fuzz_client.options │ │ │ ├── fuzz_dtlsclient.c │ │ │ ├── fuzz_dtlsclient.options │ │ │ ├── fuzz_dtlsserver.c │ │ │ ├── fuzz_dtlsserver.options │ │ │ ├── fuzz_privkey.c │ │ │ ├── fuzz_privkey.options │ │ │ ├── fuzz_pubkey.c │ │ │ ├── fuzz_pubkey.options │ │ │ ├── fuzz_server.c │ │ │ ├── fuzz_server.options │ │ │ ├── fuzz_x509crl.c │ │ │ ├── fuzz_x509crl.options │ │ │ ├── fuzz_x509crt.c │ │ │ ├── fuzz_x509crt.options │ │ │ ├── fuzz_x509csr.c │ │ │ ├── fuzz_x509csr.options │ │ │ └── onefile.c │ │ ├── hash │ │ │ ├── CMakeLists.txt │ │ │ ├── generic_sum.c │ │ │ └── hello.c │ │ ├── pkey │ │ │ ├── CMakeLists.txt │ │ │ ├── dh_client.c │ │ │ ├── dh_genprime.c │ │ │ ├── dh_prime.txt │ │ │ ├── dh_server.c │ │ │ ├── ecdh_curve25519.c │ │ │ ├── ecdsa.c │ │ │ ├── gen_key.c │ │ │ ├── key_app.c │ │ │ ├── key_app_writer.c │ │ │ ├── mpi_demo.c │ │ │ ├── pk_decrypt.c │ │ │ ├── pk_encrypt.c │ │ │ ├── pk_sign.c │ │ │ ├── pk_verify.c │ │ │ ├── rsa_decrypt.c │ │ │ ├── rsa_encrypt.c │ │ │ ├── rsa_genkey.c │ │ │ ├── rsa_priv.txt │ │ │ ├── rsa_pub.txt │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_sign_pss.c │ │ │ ├── rsa_verify.c │ │ │ └── rsa_verify_pss.c │ │ ├── psa │ │ │ ├── CMakeLists.txt │ │ │ ├── crypto_examples.c │ │ │ ├── key_ladder_demo.c │ │ │ ├── key_ladder_demo.sh │ │ │ ├── psa_constant_names.c │ │ │ └── psa_constant_names_generated.c │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── gen_entropy.c │ │ │ ├── gen_random_ctr_drbg.c │ │ │ └── gen_random_havege.c │ │ ├── ssl │ │ │ ├── CMakeLists.txt │ │ │ ├── dtls_client.c │ │ │ ├── dtls_server.c │ │ │ ├── mini_client.c │ │ │ ├── ssl_client1.c │ │ │ ├── ssl_client2.c │ │ │ ├── ssl_context_info.c │ │ │ ├── ssl_fork_server.c │ │ │ ├── ssl_mail_client.c │ │ │ ├── ssl_pthread_server.c │ │ │ ├── ssl_server.c │ │ │ ├── ssl_server2.c │ │ │ ├── ssl_test_common_source.c │ │ │ ├── ssl_test_lib.c │ │ │ └── ssl_test_lib.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark.c │ │ │ ├── cmake_subproject │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cmake_subproject.c │ │ │ ├── dlopen.c │ │ │ ├── dlopen_demo.sh │ │ │ ├── generate_cpp_dummy_build.sh │ │ │ ├── metatest.c │ │ │ ├── query_compile_time_config.c │ │ │ ├── query_config.c │ │ │ ├── query_config.h │ │ │ ├── selftest.c │ │ │ ├── udp_proxy.c │ │ │ ├── udp_proxy_wrapper.sh │ │ │ └── zeroize.c │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── pem2der.c │ │ │ └── strerror.c │ │ ├── wince_main.c │ │ └── x509 │ │ │ ├── CMakeLists.txt │ │ │ ├── cert_app.c │ │ │ ├── cert_req.c │ │ │ ├── cert_write.c │ │ │ ├── crl_app.c │ │ │ ├── load_roots.c │ │ │ └── req_app.c │ ├── scripts │ │ ├── abi_check.py │ │ ├── apidoc_full.sh │ │ ├── assemble_changelog.py │ │ ├── bump_version.sh │ │ ├── ci.requirements.txt │ │ ├── code_style.py │ │ ├── config.pl │ │ ├── config.py │ │ ├── data_files │ │ │ ├── error.fmt │ │ │ ├── query_config.fmt │ │ │ ├── rename-1.3-2.0.txt │ │ │ ├── version_features.fmt │ │ │ ├── vs2010-app-template.vcxproj │ │ │ ├── vs2010-main-template.vcxproj │ │ │ ├── vs2010-sln-template.sln │ │ │ ├── vs6-app-template.dsp │ │ │ ├── vs6-main-template.dsp │ │ │ └── vs6-workspace-template.dsw │ │ ├── ecc-heap.sh │ │ ├── footprint.sh │ │ ├── generate_errors.pl │ │ ├── generate_features.pl │ │ ├── generate_psa_constants.py │ │ ├── generate_query_config.pl │ │ ├── generate_visualc_files.pl │ │ ├── lcov.sh │ │ ├── maintainer.requirements.txt │ │ ├── massif_max.pl │ │ ├── mbedtls_dev │ │ │ ├── __init__.py │ │ │ ├── asymmetric_key_data.py │ │ │ ├── build_tree.py │ │ │ ├── c_build_helper.py │ │ │ ├── c_parsing_helper.py │ │ │ ├── c_wrapper_generator.py │ │ │ ├── crypto_data_tests.py │ │ │ ├── crypto_knowledge.py │ │ │ ├── macro_collector.py │ │ │ ├── psa_information.py │ │ │ ├── psa_storage.py │ │ │ ├── test_case.py │ │ │ ├── test_data_generation.py │ │ │ └── typing_util.py │ │ ├── memory.sh │ │ ├── min_requirements.py │ │ ├── output_env.sh │ │ ├── rename.pl │ │ ├── tmp_ignore_makefiles.sh │ │ └── windows_msbuild.bat │ ├── tests │ │ ├── .gitignore │ │ ├── .jenkins │ │ │ └── Jenkinsfile │ │ ├── CMakeLists.txt │ │ ├── Descriptions.txt │ │ ├── Makefile │ │ ├── compat-in-docker.sh │ │ ├── compat.sh │ │ ├── configs │ │ │ ├── user-config-for-test.h │ │ │ ├── user-config-malloc-0-null.h │ │ │ └── user-config-zeroize-memset.h │ │ ├── context-info.sh │ │ ├── data_files │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Readme-x509.txt │ │ │ ├── base64 │ │ │ │ ├── cli_cid.txt │ │ │ │ ├── cli_ciphersuite.txt │ │ │ │ ├── cli_def.txt │ │ │ │ ├── cli_min_cfg.txt │ │ │ │ ├── cli_no_alpn.txt │ │ │ │ ├── cli_no_keep_cert.txt │ │ │ │ ├── cli_no_mfl.txt │ │ │ │ ├── cli_no_packing.txt │ │ │ │ ├── def_b64_ff.bin │ │ │ │ ├── def_b64_too_big_1.txt │ │ │ │ ├── def_b64_too_big_2.txt │ │ │ │ ├── def_b64_too_big_3.txt │ │ │ │ ├── def_bad_b64.txt │ │ │ │ ├── empty.txt │ │ │ │ ├── mfl_1024.txt │ │ │ │ ├── mtu_10000.txt │ │ │ │ ├── srv_cid.txt │ │ │ │ ├── srv_ciphersuite.txt │ │ │ │ ├── srv_def.txt │ │ │ │ ├── srv_min_cfg.txt │ │ │ │ ├── srv_no_alpn.txt │ │ │ │ ├── srv_no_keep_cert.txt │ │ │ │ ├── srv_no_mfl.txt │ │ │ │ ├── srv_no_packing.txt │ │ │ │ └── v2.19.1.txt │ │ │ ├── cert_example_multi.crt │ │ │ ├── cert_example_multi_nocn.crt │ │ │ ├── cert_example_wildcard.crt │ │ │ ├── cert_md2.crt │ │ │ ├── cert_md2.csr │ │ │ ├── cert_md4.crt │ │ │ ├── cert_md4.csr │ │ │ ├── cert_md5.crt │ │ │ ├── cert_md5.csr │ │ │ ├── cert_sha1.crt │ │ │ ├── cert_sha224.crt │ │ │ ├── cert_sha256.crt │ │ │ ├── cert_sha384.crt │ │ │ ├── cert_sha512.crt │ │ │ ├── cli-rsa-sha1.crt │ │ │ ├── cli-rsa-sha256.crt │ │ │ ├── cli-rsa-sha256.crt.der │ │ │ ├── cli-rsa-sha256.key.der │ │ │ ├── cli-rsa.key │ │ │ ├── cli-rsa.key.der │ │ │ ├── cli.opensslconf │ │ │ ├── cli2.crt │ │ │ ├── cli2.crt.der │ │ │ ├── cli2.key │ │ │ ├── cli2.key.der │ │ │ ├── crl-ec-sha1.pem │ │ │ ├── crl-ec-sha256.pem │ │ │ ├── crl-future.pem │ │ │ ├── crl-futureRevocationDate.pem │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ ├── crl.pem │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ ├── crl_expired.pem │ │ │ ├── crl_sha256.pem │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ ├── dh.1000.pem │ │ │ ├── dh.998.pem │ │ │ ├── dh.999.pem │ │ │ ├── dh.optlen.der │ │ │ ├── dh.optlen.pem │ │ │ ├── dhparams.pem │ │ │ ├── dir-maxpath │ │ │ │ ├── 00.crt │ │ │ │ ├── 00.key │ │ │ │ ├── 01.crt │ │ │ │ ├── 01.key │ │ │ │ ├── 02.crt │ │ │ │ ├── 02.key │ │ │ │ ├── 03.crt │ │ │ │ ├── 03.key │ │ │ │ ├── 04.crt │ │ │ │ ├── 04.key │ │ │ │ ├── 05.crt │ │ │ │ ├── 05.key │ │ │ │ ├── 06.crt │ │ │ │ ├── 06.key │ │ │ │ ├── 07.crt │ │ │ │ ├── 07.key │ │ │ │ ├── 08.crt │ │ │ │ ├── 08.key │ │ │ │ ├── 09.crt │ │ │ │ ├── 09.key │ │ │ │ ├── 10.crt │ │ │ │ ├── 10.key │ │ │ │ ├── 11.crt │ │ │ │ ├── 11.key │ │ │ │ ├── 12.crt │ │ │ │ ├── 12.key │ │ │ │ ├── 13.crt │ │ │ │ ├── 13.key │ │ │ │ ├── 14.crt │ │ │ │ ├── 14.key │ │ │ │ ├── 15.crt │ │ │ │ ├── 15.key │ │ │ │ ├── 16.crt │ │ │ │ ├── 16.key │ │ │ │ ├── 17.crt │ │ │ │ ├── 17.key │ │ │ │ ├── 18.crt │ │ │ │ ├── 18.key │ │ │ │ ├── 19.crt │ │ │ │ ├── 19.key │ │ │ │ ├── 20.crt │ │ │ │ ├── 20.key │ │ │ │ ├── Readme.txt │ │ │ │ ├── c00.pem │ │ │ │ ├── c01.pem │ │ │ │ ├── c02.pem │ │ │ │ ├── c03.pem │ │ │ │ ├── c04.pem │ │ │ │ ├── c05.pem │ │ │ │ ├── c06.pem │ │ │ │ ├── c07.pem │ │ │ │ ├── c08.pem │ │ │ │ ├── c09.pem │ │ │ │ ├── c10.pem │ │ │ │ ├── c11.pem │ │ │ │ ├── c12.pem │ │ │ │ ├── c13.pem │ │ │ │ ├── c14.pem │ │ │ │ ├── c15.pem │ │ │ │ ├── c16.pem │ │ │ │ ├── c17.pem │ │ │ │ ├── c18.pem │ │ │ │ ├── c19.pem │ │ │ │ ├── c20.pem │ │ │ │ ├── int.opensslconf │ │ │ │ └── long.sh │ │ │ ├── dir1 │ │ │ │ └── test-ca.crt │ │ │ ├── dir2 │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir3 │ │ │ │ ├── Readme │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir4 │ │ │ │ ├── Readme │ │ │ │ ├── cert11.crt │ │ │ │ ├── cert12.crt │ │ │ │ ├── cert13.crt │ │ │ │ ├── cert14.crt │ │ │ │ ├── cert21.crt │ │ │ │ ├── cert22.crt │ │ │ │ ├── cert23.crt │ │ │ │ ├── cert31.crt │ │ │ │ ├── cert32.crt │ │ │ │ ├── cert33.crt │ │ │ │ ├── cert34.crt │ │ │ │ ├── cert41.crt │ │ │ │ ├── cert42.crt │ │ │ │ ├── cert43.crt │ │ │ │ ├── cert44.crt │ │ │ │ ├── cert45.crt │ │ │ │ ├── cert51.crt │ │ │ │ ├── cert52.crt │ │ │ │ ├── cert53.crt │ │ │ │ ├── cert54.crt │ │ │ │ ├── cert61.crt │ │ │ │ ├── cert62.crt │ │ │ │ ├── cert63.crt │ │ │ │ ├── cert71.crt │ │ │ │ ├── cert72.crt │ │ │ │ ├── cert73.crt │ │ │ │ ├── cert74.crt │ │ │ │ ├── cert81.crt │ │ │ │ ├── cert82.crt │ │ │ │ ├── cert83.crt │ │ │ │ ├── cert91.crt │ │ │ │ └── cert92.crt │ │ │ ├── ec_224_prv.pem │ │ │ ├── ec_224_pub.pem │ │ │ ├── ec_256_long_prv.der │ │ │ ├── ec_256_long_prv.pem │ │ │ ├── ec_256_prv.pem │ │ │ ├── ec_256_pub.pem │ │ │ ├── ec_384_prv.pem │ │ │ ├── ec_384_pub.pem │ │ │ ├── ec_521_prv.der │ │ │ ├── ec_521_prv.pem │ │ │ ├── ec_521_pub.der │ │ │ ├── ec_521_pub.pem │ │ │ ├── ec_521_short_prv.der │ │ │ ├── ec_521_short_prv.pem │ │ │ ├── ec_bp256_prv.pem │ │ │ ├── ec_bp256_pub.pem │ │ │ ├── ec_bp384_prv.pem │ │ │ ├── ec_bp384_pub.pem │ │ │ ├── ec_bp512_prv.der │ │ │ ├── ec_bp512_prv.pem │ │ │ ├── ec_bp512_pub.der │ │ │ ├── ec_bp512_pub.pem │ │ │ ├── ec_prv.pk8.der │ │ │ ├── ec_prv.pk8.pem │ │ │ ├── ec_prv.pk8.pw.der │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ ├── ec_prv.pk8nopub.der │ │ │ ├── ec_prv.pk8nopub.pem │ │ │ ├── ec_prv.pk8nopubparam.der │ │ │ ├── ec_prv.pk8nopubparam.pem │ │ │ ├── ec_prv.pk8param.der │ │ │ ├── ec_prv.pk8param.pem │ │ │ ├── ec_prv.sec1.der │ │ │ ├── ec_prv.sec1.pem │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ ├── ec_prv.specdom.der │ │ │ ├── ec_pub.der │ │ │ ├── ec_pub.pem │ │ │ ├── enco-ca-prstr.pem │ │ │ ├── enco-cert-utf8str.pem │ │ │ ├── format_gen.key │ │ │ ├── format_gen.pub │ │ │ ├── format_pkcs12.fmt │ │ │ ├── format_rsa.key │ │ │ ├── hash_file_1 │ │ │ ├── hash_file_2 │ │ │ ├── hash_file_3 │ │ │ ├── hash_file_4 │ │ │ ├── hash_file_5 │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ ├── mpi_16 │ │ │ ├── mpi_too_big │ │ │ ├── opensslcnf │ │ │ │ └── server9.crt.v3_ext │ │ │ ├── parse_input │ │ │ │ ├── bitstring-in-dn.pem │ │ │ │ ├── cert_example_multi.crt │ │ │ │ ├── cert_example_multi_nocn.crt │ │ │ │ ├── cert_md2.crt │ │ │ │ ├── cert_md4.crt │ │ │ │ ├── cert_md5.crt │ │ │ │ ├── cert_sha1.crt │ │ │ │ ├── cert_sha224.crt │ │ │ │ ├── cert_sha256.crt │ │ │ │ ├── cert_sha384.crt │ │ │ │ ├── cert_sha512.crt │ │ │ │ ├── cert_v1_with_ext.crt │ │ │ │ ├── cli-rsa-sha256-badalg.crt.der │ │ │ │ ├── crl-ec-sha1.pem │ │ │ │ ├── crl-ec-sha224.pem │ │ │ │ ├── crl-ec-sha256.pem │ │ │ │ ├── crl-ec-sha384.pem │ │ │ │ ├── crl-ec-sha512.pem │ │ │ │ ├── crl-idp.pem │ │ │ │ ├── crl-idpnc.pem │ │ │ │ ├── crl-malformed-trailing-spaces.pem │ │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ │ ├── crl_expired.pem │ │ │ │ ├── crl_md2.pem │ │ │ │ ├── crl_md4.pem │ │ │ │ ├── crl_md5.pem │ │ │ │ ├── crl_sha1.pem │ │ │ │ ├── crl_sha224.pem │ │ │ │ ├── crl_sha256.pem │ │ │ │ ├── crl_sha384.pem │ │ │ │ ├── crl_sha512.pem │ │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ │ ├── multiple_san.crt │ │ │ │ ├── non-ascii-string-in-issuer.crt │ │ │ │ ├── server1-ms.req.sha256 │ │ │ │ ├── server1.cert_type.crt │ │ │ │ ├── server1.crt │ │ │ │ ├── server1.crt.der │ │ │ │ ├── server1.ext_ku.crt │ │ │ │ ├── server1.key_usage.crt │ │ │ │ ├── server1.req.commas.sha256 │ │ │ │ ├── server1.req.md4 │ │ │ │ ├── server1.req.md5 │ │ │ │ ├── server1.req.sha1 │ │ │ │ ├── server1.req.sha224 │ │ │ │ ├── server1.req.sha256 │ │ │ │ ├── server1.req.sha384 │ │ │ │ ├── server1.req.sha512 │ │ │ │ ├── server1_pathlen_int_max-1.crt │ │ │ │ ├── server1_pathlen_int_max.crt │ │ │ │ ├── server2.crt │ │ │ │ ├── server2.crt.der │ │ │ │ ├── server3.crt │ │ │ │ ├── server4.crt │ │ │ │ ├── server5-fan.crt │ │ │ │ ├── server5-non-compliant.crt │ │ │ │ ├── server5-nonprintable_othername.crt │ │ │ │ ├── server5-othername.crt │ │ │ │ ├── server5-sha1.crt │ │ │ │ ├── server5-sha224.crt │ │ │ │ ├── server5-sha384.crt │ │ │ │ ├── server5-sha512.crt │ │ │ │ ├── server5-unsupported_othername.crt │ │ │ │ ├── server5.crt │ │ │ │ ├── server5.req.sha1 │ │ │ │ ├── server5.req.sha224 │ │ │ │ ├── server5.req.sha256 │ │ │ │ ├── server5.req.sha384 │ │ │ │ ├── server5.req.sha512 │ │ │ │ ├── server7_all_space.crt │ │ │ │ ├── server7_int-ca.crt │ │ │ │ ├── server7_pem_space.crt │ │ │ │ ├── server7_trailing_space.crt │ │ │ │ ├── server9-sha224.crt │ │ │ │ ├── server9-sha256.crt │ │ │ │ ├── server9-sha384.crt │ │ │ │ ├── server9-sha512.crt │ │ │ │ ├── server9.crt │ │ │ │ ├── server9.req.sha1 │ │ │ │ ├── server9.req.sha224 │ │ │ │ ├── server9.req.sha256 │ │ │ │ ├── server9.req.sha384 │ │ │ │ ├── server9.req.sha512 │ │ │ │ ├── test-ca-any_policy.crt │ │ │ │ ├── test-ca-any_policy_ec.crt │ │ │ │ ├── test-ca-any_policy_with_qualifier.crt │ │ │ │ ├── test-ca-any_policy_with_qualifier_ec.crt │ │ │ │ ├── test-ca-multi_policy.crt │ │ │ │ ├── test-ca-multi_policy_ec.crt │ │ │ │ ├── test-ca-unsupported_policy.crt │ │ │ │ ├── test-ca-unsupported_policy_ec.crt │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca.crt.der │ │ │ ├── passwd.psk │ │ │ ├── print_c.pl │ │ │ ├── rsa4096_prv.der │ │ │ ├── rsa4096_prv.pem │ │ │ ├── rsa4096_pub.der │ │ │ ├── rsa4096_pub.pem │ │ │ ├── rsa512.key │ │ │ ├── rsa521.key │ │ │ ├── rsa522.key │ │ │ ├── rsa528.key │ │ │ ├── rsa_pkcs1_1024_3des.pem │ │ │ ├── rsa_pkcs1_1024_aes128.pem │ │ │ ├── rsa_pkcs1_1024_aes192.pem │ │ │ ├── rsa_pkcs1_1024_aes256.pem │ │ │ ├── rsa_pkcs1_1024_clear.pem │ │ │ ├── rsa_pkcs1_1024_des.pem │ │ │ ├── rsa_pkcs1_2048_3des.pem │ │ │ ├── rsa_pkcs1_2048_aes128.pem │ │ │ ├── rsa_pkcs1_2048_aes192.pem │ │ │ ├── rsa_pkcs1_2048_aes256.pem │ │ │ ├── rsa_pkcs1_2048_clear.pem │ │ │ ├── rsa_pkcs1_2048_des.pem │ │ │ ├── rsa_pkcs1_2048_public.der │ │ │ ├── rsa_pkcs1_2048_public.pem │ │ │ ├── rsa_pkcs1_4096_3des.pem │ │ │ ├── rsa_pkcs1_4096_aes128.pem │ │ │ ├── rsa_pkcs1_4096_aes192.pem │ │ │ ├── rsa_pkcs1_4096_aes256.pem │ │ │ ├── rsa_pkcs1_4096_clear.pem │ │ │ ├── rsa_pkcs1_4096_des.pem │ │ │ ├── rsa_pkcs8_1024_public.der │ │ │ ├── rsa_pkcs8_2048_public.der │ │ │ ├── rsa_pkcs8_2048_public.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.pem │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.der │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem │ │ │ ├── server1-nospace.crt │ │ │ ├── server1-v1.crt │ │ │ ├── server1.ca.crt │ │ │ ├── server1.ca.der │ │ │ ├── server1.ca_noauthid.crt │ │ │ ├── server1.cert_type.crt │ │ │ ├── server1.cert_type.crt.openssl.v3_ext │ │ │ ├── server1.cert_type_noauthid.crt │ │ │ ├── server1.commas.crt │ │ │ ├── server1.crt │ │ │ ├── server1.crt.openssl.v3_ext │ │ │ ├── server1.csr │ │ │ ├── server1.der │ │ │ ├── server1.key │ │ │ ├── server1.key.der │ │ │ ├── server1.key_usage.crt │ │ │ ├── server1.key_usage.crt.openssl.v3_ext │ │ │ ├── server1.key_usage_noauthid.crt │ │ │ ├── server1.noauthid.crt │ │ │ ├── server1.pubkey │ │ │ ├── server1.pubkey.der │ │ │ ├── server1.req.cert_type │ │ │ ├── server1.req.cert_type_empty │ │ │ ├── server1.req.key_usage │ │ │ ├── server1.req.key_usage_empty │ │ │ ├── server1.req.ku-ct │ │ │ ├── server1.req.md4 │ │ │ ├── server1.req.md5 │ │ │ ├── server1.req.sha1 │ │ │ ├── server1.req.sha224 │ │ │ ├── server1.req.sha256 │ │ │ ├── server1.req.sha256.ext │ │ │ ├── server1.req.sha384 │ │ │ ├── server1.req.sha512 │ │ │ ├── server1.v1.crt │ │ │ ├── server10-badsign.crt │ │ │ ├── server10-bs_int3.pem │ │ │ ├── server10.crt │ │ │ ├── server10.key │ │ │ ├── server10_int3-bs.pem │ │ │ ├── server10_int3_int-ca2.crt │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ ├── server10_int3_spurious_int-ca2.crt │ │ │ ├── server1_ca.crt │ │ │ ├── server1_csr.opensslconf │ │ │ ├── server2-badsign.crt │ │ │ ├── server2-sha256.crt │ │ │ ├── server2-sha256.crt.der │ │ │ ├── server2-v1-chain.crt │ │ │ ├── server2-v1.crt │ │ │ ├── server2.crt │ │ │ ├── server2.der │ │ │ ├── server2.key │ │ │ ├── server2.key.der │ │ │ ├── server2.key.enc │ │ │ ├── server2.ku-ds.crt │ │ │ ├── server2.ku-ds_ke.crt │ │ │ ├── server2.ku-ka.crt │ │ │ ├── server2.ku-ke.crt │ │ │ ├── server3.crt │ │ │ ├── server3.key │ │ │ ├── server4.crt │ │ │ ├── server4.key │ │ │ ├── server5-badsign.crt │ │ │ ├── server5-der0.crt │ │ │ ├── server5-der1a.crt │ │ │ ├── server5-der1b.crt │ │ │ ├── server5-der2.crt │ │ │ ├── server5-der4.crt │ │ │ ├── server5-der8.crt │ │ │ ├── server5-der9.crt │ │ │ ├── server5-expired.crt │ │ │ ├── server5-future.crt │ │ │ ├── server5-selfsigned.crt │ │ │ ├── server5-sha1.crt │ │ │ ├── server5-sha224.crt │ │ │ ├── server5-sha384.crt │ │ │ ├── server5-sha512.crt │ │ │ ├── server5-ss-expired.crt │ │ │ ├── server5-ss-forgeca.crt │ │ │ ├── server5-tricky-ip-san.crt │ │ │ ├── server5.crt │ │ │ ├── server5.crt.der │ │ │ ├── server5.crt.openssl.v3_ext │ │ │ ├── server5.eku-cli.crt │ │ │ ├── server5.eku-cs.crt │ │ │ ├── server5.eku-cs_any.crt │ │ │ ├── server5.eku-srv.crt │ │ │ ├── server5.eku-srv_cli.crt │ │ │ ├── server5.key │ │ │ ├── server5.key.der │ │ │ ├── server5.key.enc │ │ │ ├── server5.ku-ds.crt │ │ │ ├── server5.ku-ka.crt │ │ │ ├── server5.ku-ke.crt │ │ │ ├── server5.req.ku.sha1 │ │ │ ├── server6-ss-child.crt │ │ │ ├── server6-ss-child.crt.openssl.v3_ext │ │ │ ├── server6.crt │ │ │ ├── server6.key │ │ │ ├── server7-badsign.crt │ │ │ ├── server7-expired.crt │ │ │ ├── server7-future.crt │ │ │ ├── server7.crt │ │ │ ├── server7.key │ │ │ ├── server7_int-ca-exp.crt │ │ │ ├── server7_int-ca.crt │ │ │ ├── server7_int-ca_ca2.crt │ │ │ ├── server7_spurious_int-ca.crt │ │ │ ├── server8.crt │ │ │ ├── server8.key │ │ │ ├── server8_int-ca2.crt │ │ │ ├── server9-bad-mgfhash.crt │ │ │ ├── server9-bad-saltlen.crt │ │ │ ├── server9-badsign.crt │ │ │ ├── server9-defaults.crt │ │ │ ├── server9-sha224.crt │ │ │ ├── server9-sha256.crt │ │ │ ├── server9-sha384.crt │ │ │ ├── server9-sha512.crt │ │ │ ├── server9-with-ca.crt │ │ │ ├── server9.crt │ │ │ ├── server9.key │ │ │ ├── test-ca-alt-good.crt │ │ │ ├── test-ca-alt.crt │ │ │ ├── test-ca-alt.csr │ │ │ ├── test-ca-alt.key │ │ │ ├── test-ca-good-alt.crt │ │ │ ├── test-ca-sha1.crt │ │ │ ├── test-ca-sha1.crt.der │ │ │ ├── test-ca-sha256.crt │ │ │ ├── test-ca-sha256.crt.der │ │ │ ├── test-ca-v1.crt │ │ │ ├── test-ca.crt │ │ │ ├── test-ca.der │ │ │ ├── test-ca.key │ │ │ ├── test-ca.key.der │ │ │ ├── test-ca.opensslconf │ │ │ ├── test-ca.req.sha256 │ │ │ ├── test-ca.req_ec.sha256 │ │ │ ├── test-ca.server1.db │ │ │ ├── test-ca.server1.future-crl.db │ │ │ ├── test-ca.server1.future-crl.opensslconf │ │ │ ├── test-ca.server1.opensslconf │ │ │ ├── test-ca2-expired.crt │ │ │ ├── test-ca2.crt │ │ │ ├── test-ca2.crt.der │ │ │ ├── test-ca2.key │ │ │ ├── test-ca2.key.der │ │ │ ├── test-ca2.key.enc │ │ │ ├── test-ca2.ku-crl.crt │ │ │ ├── test-ca2.ku-crl.crt.openssl.v3_ext │ │ │ ├── test-ca2.ku-crt.crt │ │ │ ├── test-ca2.ku-crt.crt.openssl.v3_ext │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ ├── test-ca2.ku-crt_crl.crt.openssl.v3_ext │ │ │ ├── test-ca2.ku-ds.crt │ │ │ ├── test-ca2.ku-ds.crt.openssl.v3_ext │ │ │ ├── test-ca2.req.sha256 │ │ │ ├── test-ca2_cat-future-invalid.crt │ │ │ ├── test-ca2_cat-future-present.crt │ │ │ ├── test-ca2_cat-past-invalid.crt │ │ │ ├── test-ca2_cat-past-present.crt │ │ │ ├── test-ca2_cat-present-future.crt │ │ │ ├── test-ca2_cat-present-past.crt │ │ │ ├── test-ca_cat12.crt │ │ │ ├── test-ca_cat21.crt │ │ │ ├── test-ca_printable.crt │ │ │ ├── test-ca_uppercase.crt │ │ │ ├── test-ca_utf8.crt │ │ │ ├── test-int-ca-exp.crt │ │ │ ├── test-int-ca.crt │ │ │ ├── test-int-ca.key │ │ │ ├── test-int-ca2.crt │ │ │ ├── test-int-ca2.key │ │ │ ├── test-int-ca3-badsign.crt │ │ │ ├── test-int-ca3.crt │ │ │ └── test-int-ca3.key │ │ ├── docker │ │ │ └── bionic │ │ │ │ └── Dockerfile │ │ ├── git-scripts │ │ │ ├── README.md │ │ │ ├── pre-commit.sh │ │ │ └── pre-push.sh │ │ ├── include │ │ │ ├── baremetal-override │ │ │ │ └── time.h │ │ │ ├── spe │ │ │ │ └── crypto_spe.h │ │ │ └── test │ │ │ │ ├── arguments.h │ │ │ │ ├── asn1_helpers.h │ │ │ │ ├── constant_flow.h │ │ │ │ ├── drivers │ │ │ │ ├── aead.h │ │ │ │ ├── cipher.h │ │ │ │ ├── config_test_driver.h │ │ │ │ ├── crypto_config_test_driver_extension.h │ │ │ │ ├── hash.h │ │ │ │ ├── key_management.h │ │ │ │ ├── mac.h │ │ │ │ ├── signature.h │ │ │ │ ├── size.h │ │ │ │ └── test_driver.h │ │ │ │ ├── fake_external_rng_for_test.h │ │ │ │ ├── helpers.h │ │ │ │ ├── macros.h │ │ │ │ ├── memory.h │ │ │ │ ├── psa_crypto_helpers.h │ │ │ │ ├── psa_exercise_key.h │ │ │ │ ├── psa_helpers.h │ │ │ │ ├── psa_memory_poisoning_wrappers.h │ │ │ │ ├── psa_test_wrappers.h │ │ │ │ ├── random.h │ │ │ │ └── ssl_helpers.h │ │ ├── make-in-docker.sh │ │ ├── scripts │ │ │ ├── all-in-docker.sh │ │ │ ├── all.sh │ │ │ ├── analyze_outcomes.py │ │ │ ├── basic-build-test.sh │ │ │ ├── basic-in-docker.sh │ │ │ ├── check-doxy-blocks.pl │ │ │ ├── check-generated-files.sh │ │ │ ├── check-python-files.sh │ │ │ ├── check_files.py │ │ │ ├── check_names.py │ │ │ ├── check_test_cases.py │ │ │ ├── depends.py │ │ │ ├── docker_env.sh │ │ │ ├── doxygen.sh │ │ │ ├── gen_ctr_drbg.pl │ │ │ ├── gen_gcm_decrypt.pl │ │ │ ├── gen_gcm_encrypt.pl │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ ├── generate-afl-tests.sh │ │ │ ├── generate_bignum_tests.py │ │ │ ├── generate_psa_tests.py │ │ │ ├── generate_psa_wrappers.py │ │ │ ├── generate_server9_bad_saltlen.py │ │ │ ├── generate_test_code.py │ │ │ ├── list-identifiers.sh │ │ │ ├── list_internal_identifiers.py │ │ │ ├── psa_collect_statuses.py │ │ │ ├── quiet │ │ │ │ ├── cmake │ │ │ │ ├── make │ │ │ │ └── quiet.sh │ │ │ ├── recursion.pl │ │ │ ├── run-metatests.sh │ │ │ ├── run-test-suites.pl │ │ │ ├── run_demos.py │ │ │ ├── scripts_path.py │ │ │ ├── set_psa_test_dependencies.py │ │ │ ├── tcp_client.pl │ │ │ ├── test-ref-configs.pl │ │ │ ├── test_config_script.py │ │ │ ├── test_generate_test_code.py │ │ │ ├── test_psa_compliance.py │ │ │ ├── test_psa_constant_names.py │ │ │ ├── test_zeroize.gdb │ │ │ └── travis-log-failure.sh │ │ ├── src │ │ │ ├── asn1_helpers.c │ │ │ ├── drivers │ │ │ │ ├── hash.c │ │ │ │ ├── platform_builtin_keys.c │ │ │ │ ├── test_driver_aead.c │ │ │ │ ├── test_driver_cipher.c │ │ │ │ ├── test_driver_key_management.c │ │ │ │ ├── test_driver_mac.c │ │ │ │ ├── test_driver_signature.c │ │ │ │ └── test_driver_size.c │ │ │ ├── external_timing │ │ │ │ ├── external_timing_for_test.c │ │ │ │ └── timing_alt.h │ │ │ ├── fake_external_rng_for_test.c │ │ │ ├── helpers.c │ │ │ ├── psa_crypto_helpers.c │ │ │ ├── psa_exercise_key.c │ │ │ ├── psa_memory_poisoning_wrappers.c │ │ │ ├── psa_test_wrappers.c │ │ │ ├── random.c │ │ │ ├── test_helpers │ │ │ │ └── ssl_helpers.c │ │ │ ├── test_memory.c │ │ │ └── threading_helpers.c │ │ ├── ssl-opt-in-docker.sh │ │ ├── ssl-opt.sh │ │ └── suites │ │ │ ├── helpers.function │ │ │ ├── host_test.function │ │ │ ├── main_test.function │ │ │ ├── test_suite_aes.cbc.data │ │ │ ├── test_suite_aes.cfb.data │ │ │ ├── test_suite_aes.ecb.data │ │ │ ├── test_suite_aes.function │ │ │ ├── test_suite_aes.ofb.data │ │ │ ├── test_suite_aes.rest.data │ │ │ ├── test_suite_aes.xts.data │ │ │ ├── test_suite_arc4.data │ │ │ ├── test_suite_arc4.function │ │ │ ├── test_suite_aria.data │ │ │ ├── test_suite_aria.function │ │ │ ├── test_suite_asn1parse.data │ │ │ ├── test_suite_asn1parse.function │ │ │ ├── test_suite_asn1write.data │ │ │ ├── test_suite_asn1write.function │ │ │ ├── test_suite_base64.data │ │ │ ├── test_suite_base64.function │ │ │ ├── test_suite_bignum.function │ │ │ ├── test_suite_bignum.generated.data │ │ │ ├── test_suite_bignum.misc.data │ │ │ ├── test_suite_blowfish.data │ │ │ ├── test_suite_blowfish.function │ │ │ ├── test_suite_camellia.data │ │ │ ├── test_suite_camellia.function │ │ │ ├── test_suite_ccm.data │ │ │ ├── test_suite_ccm.function │ │ │ ├── test_suite_chacha20.data │ │ │ ├── test_suite_chacha20.function │ │ │ ├── test_suite_chachapoly.data │ │ │ ├── test_suite_chachapoly.function │ │ │ ├── test_suite_cipher.aes.data │ │ │ ├── test_suite_cipher.arc4.data │ │ │ ├── test_suite_cipher.aria.data │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ ├── test_suite_cipher.camellia.data │ │ │ ├── test_suite_cipher.ccm.data │ │ │ ├── test_suite_cipher.chacha20.data │ │ │ ├── test_suite_cipher.chachapoly.data │ │ │ ├── test_suite_cipher.des.data │ │ │ ├── test_suite_cipher.function │ │ │ ├── test_suite_cipher.gcm.data │ │ │ ├── test_suite_cipher.misc.data │ │ │ ├── test_suite_cipher.nist_kw.data │ │ │ ├── test_suite_cipher.null.data │ │ │ ├── test_suite_cipher.padding.data │ │ │ ├── test_suite_cmac.data │ │ │ ├── test_suite_cmac.function │ │ │ ├── test_suite_constant_time.data │ │ │ ├── test_suite_constant_time.function │ │ │ ├── test_suite_constant_time_hmac.data │ │ │ ├── test_suite_constant_time_hmac.function │ │ │ ├── test_suite_ctr_drbg.data │ │ │ ├── test_suite_ctr_drbg.function │ │ │ ├── test_suite_debug.data │ │ │ ├── test_suite_debug.function │ │ │ ├── test_suite_des.data │ │ │ ├── test_suite_des.function │ │ │ ├── test_suite_dhm.data │ │ │ ├── test_suite_dhm.function │ │ │ ├── test_suite_ecdh.data │ │ │ ├── test_suite_ecdh.function │ │ │ ├── test_suite_ecdsa.data │ │ │ ├── test_suite_ecdsa.function │ │ │ ├── test_suite_ecjpake.data │ │ │ ├── test_suite_ecjpake.function │ │ │ ├── test_suite_ecp.data │ │ │ ├── test_suite_ecp.function │ │ │ ├── test_suite_entropy.data │ │ │ ├── test_suite_entropy.function │ │ │ ├── test_suite_error.data │ │ │ ├── test_suite_error.function │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ ├── test_suite_gcm.camellia.data │ │ │ ├── test_suite_gcm.function │ │ │ ├── test_suite_gcm.misc.data │ │ │ ├── test_suite_hkdf.data │ │ │ ├── test_suite_hkdf.function │ │ │ ├── test_suite_hmac_drbg.function │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ ├── test_suite_md.data │ │ │ ├── test_suite_md.function │ │ │ ├── test_suite_mdx.data │ │ │ ├── test_suite_mdx.function │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ ├── test_suite_mps.data │ │ │ ├── test_suite_mps.function │ │ │ ├── test_suite_net.data │ │ │ ├── test_suite_net.function │ │ │ ├── test_suite_nist_kw.data │ │ │ ├── test_suite_nist_kw.function │ │ │ ├── test_suite_oid.data │ │ │ ├── test_suite_oid.function │ │ │ ├── test_suite_pem.data │ │ │ ├── test_suite_pem.function │ │ │ ├── test_suite_pk.data │ │ │ ├── test_suite_pk.function │ │ │ ├── test_suite_pkcs12.data │ │ │ ├── test_suite_pkcs12.function │ │ │ ├── test_suite_pkcs1_v15.data │ │ │ ├── test_suite_pkcs1_v15.function │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ ├── test_suite_pkcs5.data │ │ │ ├── test_suite_pkcs5.function │ │ │ ├── test_suite_pkparse.data │ │ │ ├── test_suite_pkparse.function │ │ │ ├── test_suite_pkwrite.data │ │ │ ├── test_suite_pkwrite.function │ │ │ ├── test_suite_platform_printf.data │ │ │ ├── test_suite_platform_printf.function │ │ │ ├── test_suite_poly1305.data │ │ │ ├── test_suite_poly1305.function │ │ │ ├── test_suite_psa_crypto.data │ │ │ ├── test_suite_psa_crypto.function │ │ │ ├── test_suite_psa_crypto_attributes.data │ │ │ ├── test_suite_psa_crypto_attributes.function │ │ │ ├── test_suite_psa_crypto_driver_wrappers.data │ │ │ ├── test_suite_psa_crypto_driver_wrappers.function │ │ │ ├── test_suite_psa_crypto_entropy.data │ │ │ ├── test_suite_psa_crypto_entropy.function │ │ │ ├── test_suite_psa_crypto_generate_key.function │ │ │ ├── test_suite_psa_crypto_generate_key.generated.data │ │ │ ├── test_suite_psa_crypto_hash.data │ │ │ ├── test_suite_psa_crypto_hash.function │ │ │ ├── test_suite_psa_crypto_init.data │ │ │ ├── test_suite_psa_crypto_init.function │ │ │ ├── test_suite_psa_crypto_low_hash.function │ │ │ ├── test_suite_psa_crypto_low_hash.generated.data │ │ │ ├── test_suite_psa_crypto_memory.data │ │ │ ├── test_suite_psa_crypto_memory.function │ │ │ ├── test_suite_psa_crypto_metadata.data │ │ │ ├── test_suite_psa_crypto_metadata.function │ │ │ ├── test_suite_psa_crypto_not_supported.function │ │ │ ├── test_suite_psa_crypto_not_supported.generated.data │ │ │ ├── test_suite_psa_crypto_not_supported.misc.data │ │ │ ├── test_suite_psa_crypto_op_fail.function │ │ │ ├── test_suite_psa_crypto_op_fail.generated.data │ │ │ ├── test_suite_psa_crypto_op_fail.misc.data │ │ │ ├── test_suite_psa_crypto_persistent_key.data │ │ │ ├── test_suite_psa_crypto_persistent_key.function │ │ │ ├── test_suite_psa_crypto_se_driver_hal.data │ │ │ ├── test_suite_psa_crypto_se_driver_hal.function │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.data │ │ │ ├── test_suite_psa_crypto_se_driver_hal_mocks.function │ │ │ ├── test_suite_psa_crypto_slot_management.data │ │ │ ├── test_suite_psa_crypto_slot_management.function │ │ │ ├── test_suite_psa_crypto_storage_format.current.data │ │ │ ├── test_suite_psa_crypto_storage_format.function │ │ │ ├── test_suite_psa_crypto_storage_format.misc.data │ │ │ ├── test_suite_psa_crypto_storage_format.v0.data │ │ │ ├── test_suite_psa_its.data │ │ │ ├── test_suite_psa_its.function │ │ │ ├── test_suite_random.data │ │ │ ├── test_suite_random.function │ │ │ ├── test_suite_rsa.data │ │ │ ├── test_suite_rsa.function │ │ │ ├── test_suite_shax.data │ │ │ ├── test_suite_shax.function │ │ │ ├── test_suite_ssl.data │ │ │ ├── test_suite_ssl.function │ │ │ ├── test_suite_ssl_decrypt.function │ │ │ ├── test_suite_ssl_decrypt.misc.data │ │ │ ├── test_suite_test_helpers.data │ │ │ ├── test_suite_test_helpers.function │ │ │ ├── test_suite_timing.data │ │ │ ├── test_suite_timing.function │ │ │ ├── test_suite_version.data │ │ │ ├── test_suite_version.function │ │ │ ├── test_suite_x509parse.data │ │ │ ├── test_suite_x509parse.function │ │ │ ├── test_suite_x509write.data │ │ │ ├── test_suite_x509write.function │ │ │ ├── test_suite_xtea.data │ │ │ └── test_suite_xtea.function │ └── visualc │ │ └── VS2010 │ │ ├── benchmark.vcxproj │ │ ├── cert_app.vcxproj │ │ ├── cert_req.vcxproj │ │ ├── cert_write.vcxproj │ │ ├── crl_app.vcxproj │ │ ├── crypt_and_hash.vcxproj │ │ ├── crypto_examples.vcxproj │ │ ├── dh_client.vcxproj │ │ ├── dh_genprime.vcxproj │ │ ├── dh_server.vcxproj │ │ ├── dtls_client.vcxproj │ │ ├── dtls_server.vcxproj │ │ ├── ecdh_curve25519.vcxproj │ │ ├── ecdsa.vcxproj │ │ ├── gen_entropy.vcxproj │ │ ├── gen_key.vcxproj │ │ ├── gen_random_ctr_drbg.vcxproj │ │ ├── gen_random_havege.vcxproj │ │ ├── generic_sum.vcxproj │ │ ├── hello.vcxproj │ │ ├── key_app.vcxproj │ │ ├── key_app_writer.vcxproj │ │ ├── key_ladder_demo.vcxproj │ │ ├── load_roots.vcxproj │ │ ├── mbedTLS.sln │ │ ├── mbedTLS.vcxproj │ │ ├── metatest.vcxproj │ │ ├── mini_client.vcxproj │ │ ├── mpi_demo.vcxproj │ │ ├── pem2der.vcxproj │ │ ├── pk_decrypt.vcxproj │ │ ├── pk_encrypt.vcxproj │ │ ├── pk_sign.vcxproj │ │ ├── pk_verify.vcxproj │ │ ├── psa_constant_names.vcxproj │ │ ├── query_compile_time_config.vcxproj │ │ ├── req_app.vcxproj │ │ ├── rsa_decrypt.vcxproj │ │ ├── rsa_encrypt.vcxproj │ │ ├── rsa_genkey.vcxproj │ │ ├── rsa_sign.vcxproj │ │ ├── rsa_sign_pss.vcxproj │ │ ├── rsa_verify.vcxproj │ │ ├── rsa_verify_pss.vcxproj │ │ ├── selftest.vcxproj │ │ ├── ssl_client1.vcxproj │ │ ├── ssl_client2.vcxproj │ │ ├── ssl_context_info.vcxproj │ │ ├── ssl_fork_server.vcxproj │ │ ├── ssl_mail_client.vcxproj │ │ ├── ssl_server.vcxproj │ │ ├── ssl_server2.vcxproj │ │ ├── strerror.vcxproj │ │ ├── udp_proxy.vcxproj │ │ └── zeroize.vcxproj └── noise.sys │ ├── bugs.txt │ ├── changes.txt │ ├── noise.txt │ ├── noise386.sys │ ├── noise586.sys │ ├── readme.1st │ ├── sample.exe │ ├── sample_c.dif │ ├── src │ ├── cpuid.inc │ ├── demo │ │ ├── makefile │ │ ├── sample.c │ │ └── usuals.h │ ├── initnoise.inc │ ├── license.txt │ ├── makefile │ ├── multiplex.inc │ ├── noise.asm │ ├── noise.def │ ├── noise.mac │ ├── pat │ │ ├── devlod.sh │ │ ├── drvload.sh │ │ ├── idrv106.sh │ │ └── readme │ ├── printf.inc │ ├── sha.inc │ └── version │ ├── technote.txt │ └── to-do.txt ├── CWSDPMI.EXE ├── HTTPDOS.INI ├── LICENSE.md ├── Makefile ├── Makefile.linux ├── README.md ├── WATTCP.CFG ├── cert.conf ├── csr.conf ├── genkeys.sh ├── src ├── main.c ├── main.h ├── middleware.c ├── middleware.h ├── server.c └── server.h └── static ├── index.htm ├── sub.htm └── superilu.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/Watt-32/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/.gitattributes -------------------------------------------------------------------------------- /3rdparty/Watt-32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/.gitignore -------------------------------------------------------------------------------- /3rdparty/Watt-32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/README -------------------------------------------------------------------------------- /3rdparty/Watt-32/README.TOO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/README.TOO -------------------------------------------------------------------------------- /3rdparty/Watt-32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/README.md -------------------------------------------------------------------------------- /3rdparty/Watt-32/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/TODO -------------------------------------------------------------------------------- /3rdparty/Watt-32/appveyor-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/appveyor-script.bat -------------------------------------------------------------------------------- /3rdparty/Watt-32/appveyor-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/appveyor-script.py -------------------------------------------------------------------------------- /3rdparty/Watt-32/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/appveyor.yml -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/IP2Location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/IP2Location.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/IP2Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/IP2Location.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/bcc_dos.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/bcc_dos.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/bcc_win.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/bcc_win.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/blather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/blather.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/bping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/bping.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/causeway.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/causeway.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/clang.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/common.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/cookie.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/country.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/country.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/cygwin.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/cygwin.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/dayserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/dayserv.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/daytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/daytime.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/digmars.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/digmars.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/dj_all.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/dj_all.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/djcommon.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/djcommon.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/djgpp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/djgpp.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/djgpp_win.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/djgpp_win.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/dos32a.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/dos32a.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/dos4gw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/dos4gw.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/dxe_tst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/dxe_tst.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/dynip.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/dynip.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/eth-wake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/eth-wake.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ethers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ethers -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/finger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/finger.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/geoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/geoip.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/geoip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/geoip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/highc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/highc.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/host.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/hosts -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/hosts6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/hosts6 -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/htget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/htget.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ident.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ladsoft.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ladsoft.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/lcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/lcc.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/lister.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/lister.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/lpq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/lpq.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/lpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/lpr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/mingw32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/mingw32.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/mingw64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/mingw64.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/networks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/networks -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ntime.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/pellesc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/pellesc.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ph.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ping.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/pmodew.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/pmodew.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/popdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/popdump.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/powerpak.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/powerpak.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/ppp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/ppp.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/pppoe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/pppoe.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/protocol -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/revip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/revip.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/rexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/rexec.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/rpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/rpc.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/services -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/slip.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/slip.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/smb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/smb.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/stat.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/tcpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/tcpinfo.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/tcpport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/tcpport.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/tcptalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/tcptalk.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/tiny.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/tracert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/tracert.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/tree.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/uname.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/visualc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/visualc.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/vlsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/vlsm.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/w32-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/w32-test.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/watcom.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/watcom.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wattcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wattcp.cfg -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wc_win.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wc_win.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wccommon.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wccommon.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wcwindll.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wcwindll.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wdosx.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wdosx.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wdosx_bc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wdosx_bc.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wdosx_dm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wdosx_dm.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/whois.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/wol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/wol.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/x32_stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/x32_stk.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/bin/x32vm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/bin/x32vm.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/changes -------------------------------------------------------------------------------- /3rdparty/Watt-32/dosemu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/dosemu.bat -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/arpa/ftp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/arpa/inet.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/arpa/nameser.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/arpa/nameser_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/arpa/nameser_compat.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/arpa/telnet.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/arpa/tftp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/check_hdr.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/check_hdr.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/copying.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/copying.bsd -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/err.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/bpf.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/bpfdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/bpfdesc.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/ethertyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/ethertyp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_arc.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_arp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_atm.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_dl.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_ether.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_fddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_fddi.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_llc.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_media.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_packe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_packe.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_packet.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_ppp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_pppva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_pppva.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_slvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_slvar.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_strip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_tun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_tun.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/if_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/if_types.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/netisr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/netisr.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/pfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/pfil.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/pfkeyv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/pfkeyv2.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/ppp-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/ppp-comp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/ppp_defs.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/radix.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/raw_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/raw_cb.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/route.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/slcompre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/slcompre.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/net/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/net/slip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netdb.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/icmp6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/icmp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/icmp_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/if_ether.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/if_fddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/if_fddi.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/igmp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/igmp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/igmp_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/in.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/in_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/in_pcb.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/in_systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/in_systm.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/in_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/in_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ip6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ip_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ip_fw.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ip_icmp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ip_mrout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ip_mrout.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ip_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ip_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/ipv6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp_debu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp_debu.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp_fsm.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp_scor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp_scor.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp_seq.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp_time.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcp_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/tcpip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/udp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet/udp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet/udp_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ah.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ah6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ah6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/esp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/esp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/esp6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/esp_rijn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/esp_rijn.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/in6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/in6_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/in6_gif.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/in6_ifat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/in6_ifat.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/in6_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/in6_pcb.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/in6_pref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/in6_pref.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/in6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/in6_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ip6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ip6_ecn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ip6_ecn.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ip6_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ip6_fw.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ip6_mrou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ip6_mrou.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ip6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ip6_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ip6proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ip6proto.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ipcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ipcomp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ipcomp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ipcomp6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ipsec.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/ipsec6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/ipsec6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/mld6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/mld6_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/nd6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/nd6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/pim6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/pim6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/pim6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/pim6_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/raw_ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/raw_ip6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/scope6_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/scope6_v.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/tcp6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/tcp6_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/netinet6/udp6_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/netinet6/udp6_var.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/poll.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/protocol/dumprest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/protocol/dumprest.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/protocol/routed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/protocol/routed.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/protocol/rwhod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/protocol/rwhod.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/protocol/talkd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/protocol/talkd.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/protocol/timed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/protocol/timed.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/resolv.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/rpcsvc/yp_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/rpcsvc/yp_prot.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/rpcsvc/ypclnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/rpcsvc/ypclnt.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/cdefs.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/djgpp.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/djgpp.err -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/errno.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/ioctl.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/mbuf.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/pack_off.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/pack_off.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/pack_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/pack_on.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/param.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/poll.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/queue.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/select.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/so_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/so_ioctl.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/socket.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/swap.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/syslog.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/uio.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/un.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/w32api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/w32api.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/werrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/werrno.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/whide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/whide.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/wtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/wtime.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/sys/wtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/sys/wtypes.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/syslog.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/tcp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/w32-fakes/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/w32-fakes/winsock.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/w32-fakes/winsock2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/w32-fakes/winsock2.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/inc/w32-fakes/ws2tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/inc/w32-fakes/ws2tcpip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/install -------------------------------------------------------------------------------- /3rdparty/Watt-32/lib/DXE/DELETE.ME: -------------------------------------------------------------------------------- 1 | This file is here for the directory to be created. 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/Watt-32/lib/x64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/lib/x64/README -------------------------------------------------------------------------------- /3rdparty/Watt-32/lib/x86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/lib/x86/README -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/README.md -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/chksum0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/chksum0.S -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/chksum0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/chksum0.asm -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/chksum0.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/chksum0.nas -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/chksum0.tas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/chksum0.tas -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/chksum0.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/chksum0.wat -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/rs232.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/rs232.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Attic/rs232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Attic/rs232.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Python/.gitignore -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Python/Makefile -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Python/_watt32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Python/_watt32.rc -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/Python/runme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/Python/runme.py -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/accept.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/asmpkt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/asmpkt.asm -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/asmpkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/asmpkt.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/asmpkt.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/asmpkt.nas -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/atxmega.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/atxmega.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/bind.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/bsddbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/bsddbug.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/bsddbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/bsddbug.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/bsdname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/bsdname.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/bsdname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/bsdname.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/btrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/btrace.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/btree.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/btree.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/bugtrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/bugtrap.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/build/djgpp/syserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/build/djgpp/syserr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/chksum.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/chksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/chksum.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/close.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/config.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/configur.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/configur.bat -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/configur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/configur.sh -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/connect.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/copyrigh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/copyrigh.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/country.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/country.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cpp_filter.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cpp_filter.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cppcheck.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cppcheck.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cpuid.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cpumodel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cpumodel.S -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cpumodel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cpumodel.asm -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cpumodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cpumodel.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/cpumodel.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/cpumodel.nas -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/crc.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/crit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/crit.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/djgpp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/djgpp.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/doxyfile -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/dynip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/dynip.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/dynip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/dynip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/echo.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/echo.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/enum_cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/enum_cp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/fcntl.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ffs.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ffs.nas -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/fortify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/fortify.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/fortify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/fortify.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/fsext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/fsext.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/get_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/get_ai.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/get_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/get_ip.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/get_ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/get_ni.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/get_xby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/get_xby.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/get_xbyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/get_xbyr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/geteth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/geteth.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/gethost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/gethost.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/gethost6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/gethost6.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/getname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/getname.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/getnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/getnet.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/getopt.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/getprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/getprot.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/getput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/getput.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/getserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/getserv.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/gettod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/gettod.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/gettod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/gettod.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/hello.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/highc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/highc.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/ascii.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/big5.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1046.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1124.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1125.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1129.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1129.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1133.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1133.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1161.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1162.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1162.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1163.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1250.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1251.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1251.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1252.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1252.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1253.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1254.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1255.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1256.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1257.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1257.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp1258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp1258.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp437.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp737.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp737.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp775.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp775.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp850.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp852.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp852.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp853.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp853.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp855.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp856.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp856.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp857.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp857.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp858.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp858.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp860.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp861.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp861.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp862.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp862.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp863.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp863.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp864.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp865.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp866.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp866.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp869.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp869.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp874.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp874.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp922.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp922.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp932.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp932.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp932ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp932ext.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp936ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp936ext.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp943.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp943.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp949.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp949.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp950.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp950.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/cp950ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/cp950ext.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/flushwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/flushwc.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/jisx0201.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/jisx0201.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/jisx0208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/jisx0208.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/ksc5601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/ksc5601.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/uhc_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/uhc_1.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/uhc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/uhc_2.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/iconv/vietcomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/iconv/vietcomb.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/idna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/idna.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/idna.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ioctl.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ioport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ioport.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip4_frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip4_frag.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip4_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip4_frag.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip4_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip4_in.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip4_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip4_in.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip4_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip4_out.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip4_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip4_out.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip6_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip6_in.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip6_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip6_in.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip6_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip6_out.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip6_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip6_out.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ip_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ip_info.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/lang.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/lang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/lang.l -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/language.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/language.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/linkaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/linkaddr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/lint.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/lint.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/listen.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/lookup.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/loopback.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/loopback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/loopback.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/make-oui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/make-oui.py -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/makefile.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/makefile.all -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/misc.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/misc.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/misc_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/misc_str.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/misc_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/misc_str.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/mkimp.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/mkimp.sed -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/netaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/netaddr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/netaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/netaddr.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/netback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/netback.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/neterr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/neterr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/nettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/nettime.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/nochkstk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/nochkstk.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/nsapaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/nsapaddr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/oldstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/oldstuff.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/packet32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/packet32.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/packet32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/packet32.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pc_cbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pc_cbrk.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcarp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcarp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcbootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcbootp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcbootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcbootp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcbuf.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcbuf.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcconfig.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcconfig.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdbug.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdbug.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdbug.orig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdbug.orig.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdhcp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdhcp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdns.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcdns.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcicmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcicmp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcicmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcicmp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcicmp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcicmp6.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcicmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcicmp6.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcigmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcigmp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcigmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcigmp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcintr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcping.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcpkt.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcpkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcpkt.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcpkt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcpkt2.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcpkt32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcpkt32.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcpkt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcpkt32.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcqueue.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcqueue.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcrarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcrarp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcrarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcrarp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcrecv.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcrecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcrecv.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcsarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcsarp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcsarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcsarp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcsed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcsed.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcsed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcsed.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcslip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcslip.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcslip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcslip.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcstat.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pcstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pcstat.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pctcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pctcp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pctcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pctcp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pkt_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pkt_stub.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/poll.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ports.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/powerpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/powerpak.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/powerpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/powerpak.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ppp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ppp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pppoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pppoe.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/pppoe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/pppoe.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/presaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/presaddr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/printk.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/printk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/printk.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/profile.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/profile.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/punycode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/punycode.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/punycode.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/qmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/qmsg.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/receive.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/register.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_comp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_data.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_debu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_debu.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_init.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_loc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_loc.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_mkqu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_mkqu.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_quer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_quer.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/res_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/res_send.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/resolver.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/run.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/run.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sctp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/select.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/settod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/settod.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/settod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/settod.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/shutdown.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/signal.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_dbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_dbu.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_in.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_ini.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_ini.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_io.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_prn.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_scn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_scn.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sock_sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sock_sel.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/socket.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/socket.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/sockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/sockopt.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/split.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/split.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/stkwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/stkwalk.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/stream.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/swsvpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/swsvpkt.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/swsvpkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/swsvpkt.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/syslog.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/syslog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/syslog2.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/syslog2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/syslog2.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/target.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tcp_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tcp_fsm.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tcp_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tcp_md5.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/teredo64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/teredo64.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/teredo64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/teredo64.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/chksum.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/configur.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/configur.bat -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/cpu.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/cpu.orig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/cpu.orig.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/cpuspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/cpuspeed.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/cyg_kbhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/cyg_kbhit.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/eatsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/eatsock.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/fsext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/fsext.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/gtod_tst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/gtod_tst.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/makefile.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/makefile.all -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/makefile.dmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/makefile.dmc -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/mcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/mcast.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/packet.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/socktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/socktest.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/swap.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/sysdep.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/timeit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/timeit_test.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/tiny.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/ttime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/ttime.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/ttime2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/ttime2.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/udp_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/udp_srv.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/udp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/udp_test.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tests/watt32.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tests/watt32.pl -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tftp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/tftp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/timer.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/timer.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/transmit.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/udp_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/udp_rev.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ufortify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ufortify.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/version.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/w32_ndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/w32_ndis.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/watt-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/watt-32.ico -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/watt-32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/watt-32.rc -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/wattcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/wattcp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/wattcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/wattcp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/wdpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/wdpmi.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/wdpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/wdpmi.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/win_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/win_dll.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/win_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/win_dll.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/winadinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/winadinf.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/winadinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/winadinf.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/winmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/winmisc.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/winpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/winpkt.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/winpkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/winpkt.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/x32vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/x32vm.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/x32vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/x32vm.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zadler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zadler32.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zcompres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zcompres.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zconf.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zcrc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zcrc32.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zcrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zcrc32.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zdeflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zdeflate.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zdeflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zdeflate.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zgzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zgzio.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinfback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinfback.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinffast.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinffast.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinffix.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinflate.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinflate.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinftree.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zinftree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zinftree.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib/inffast.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib/inffast.asm -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib/inffast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib/inffast.s -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib/match.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib/match.asm -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib/match.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib/match.s -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib/readme -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zlib/zlib.3 -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ztrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ztrees.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/ztrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/ztrees.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zuncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zuncompr.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zutil.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/src/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/src/zutil.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/thanks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/thanks -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/bin2c.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/check_EOL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/check_EOL.py -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/dj-errno.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/dj-errno.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/dxegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/dxegen.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/errnos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/errnos.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/errnos.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/errnos.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/errnox.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/errnox.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/linux/README -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/makefile -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkdep.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkheads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkheads.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkimp.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkimp.h -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkimp.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkimp.l -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkimp_gr.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkimp_gr.y -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mklang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mklang.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/mkmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/mkmake.c -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/pkg-conf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/pkg-conf.mak -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/readme -------------------------------------------------------------------------------- /3rdparty/Watt-32/util/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/Watt-32/util/sysdep.h -------------------------------------------------------------------------------- /3rdparty/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/config.h -------------------------------------------------------------------------------- /3rdparty/ini-20220806/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/ini-20220806/LICENSE -------------------------------------------------------------------------------- /3rdparty/ini-20220806/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/ini-20220806/README.md -------------------------------------------------------------------------------- /3rdparty/ini-20220806/src/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/ini-20220806/src/ini.c -------------------------------------------------------------------------------- /3rdparty/ini-20220806/src/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/ini-20220806/src/ini.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.gitattributes -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.gitignore -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.globalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.globalrc -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.mypy.ini -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.pylintrc -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.readthedocs.yaml -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.travis.yml -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/.uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/.uncrustify.cfg -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/3rdparty/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/3rdparty/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/3rdparty/Makefile.inc -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/3rdparty/everest/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/BRANCHES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/BRANCHES.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/BUGS.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/ChangeLog -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/DartConfiguration.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/DartConfiguration.tcl -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/LICENSE -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/Makefile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/README.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/SECURITY.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/SUPPORT.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/configs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/configs/README.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/configs/config-suite-b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/configs/config-suite-b.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/configs/config-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/configs/config-thread.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/dco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/dco.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.pdf 3 | _build/ 4 | api/ 5 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/Makefile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/conf.py -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/index.rst -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/proposed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/proposed/Makefile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/proposed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/proposed/README -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/requirements.in: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme 2 | breathe 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/requirements.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/docs/use-psa-crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/docs/use-psa-crypto.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/doxygen/input/doc_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/doxygen/input/doc_rng.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/doxygen/input/doc_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/doxygen/input/doc_x509.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/doxygen/mbedtls.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/doxygen/mbedtls.doxyfile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/aes.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/aesni.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/arc4.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/aria.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/asn1.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/base64.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/bignum.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/ccm.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/certs.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/cipher.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/cmac.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/config.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/debug.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/des.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/dhm.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/ecdh.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/ecp.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/error.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/gcm.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/havege.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/hkdf.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/md.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/md2.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/md4.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/md5.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/net.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/oid.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/pem.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/pk.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/pkcs11.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/rsa.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/sha1.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/sha256.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/sha512.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/mbedtls/ssl.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/include/psa/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/include/psa/crypto.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/.gitignore: -------------------------------------------------------------------------------- 1 | libmbed* 2 | *.sln 3 | *.vcxproj 4 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/Makefile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/aes.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/aesni.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/arc4.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/aria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/aria.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/asn1parse.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/asn1write.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/base64.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/bignum.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/blowfish.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/camellia.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ccm.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/certs.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/chacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/chacha20.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/chachapoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/chachapoly.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/cipher.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/cipher_wrap.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/cmac.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/common.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ctr_drbg.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/debug.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/des.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/dhm.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ecdh.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ecdsa.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ecjpake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ecjpake.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ecp.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ecp_curves.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/entropy.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/error.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/gcm.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/havege.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/hkdf.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/hmac_drbg.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/md.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/md2.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/md4.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/md5.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/mps_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/mps_common.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/mps_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/mps_error.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/mps_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/mps_reader.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/mps_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/mps_reader.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/mps_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/mps_trace.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/mps_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/mps_trace.h -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/net_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/net_sockets.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/nist_kw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/nist_kw.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/oid.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/padlock.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pem.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pk.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pk_wrap.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pkcs11.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pkcs12.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pkcs5.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pkparse.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/pkwrite.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/platform.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/poly1305.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/psa_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/psa_crypto.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ripemd160.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/rsa.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/sha1.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/sha256.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/sha512.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_cache.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_cli.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_cookie.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_msg.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_srv.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_ticket.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/ssl_tls.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/threading.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/timing.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/version.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/x509.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/x509_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/x509_create.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/x509_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/x509_crl.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/x509_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/x509_crt.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/x509_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/x509_csr.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/library/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/library/xtea.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/programs/.gitignore -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/programs/Makefile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/programs/README.md -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_client.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_dtlsclient.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_dtlsserver.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_privkey.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_pubkey.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_server.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 1048575 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_x509crl.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_x509crt.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/fuzz/fuzz_x509csr.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/hash/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/programs/hash/hello.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/pkey/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/programs/pkey/ecdsa.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/test/cmake_subproject/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | Makefile 3 | cmake_subproject 4 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/programs/wince_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/programs/wince_main.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/abi_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/abi_check.py -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/code_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/code_style.py -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/config.pl -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/config.py -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/ecc-heap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/ecc-heap.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/footprint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/footprint.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/lcov.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/massif_max.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/massif_max.pl -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/memory.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/output_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/output_env.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/scripts/rename.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/scripts/rename.pl -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/.gitignore -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- 1 | mbedtls.run_job() 2 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/Makefile -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/compat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/compat.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/context-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/context-info.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/data_files/base64/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/scripts/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/scripts/all.sh -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/src/helpers.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/src/random.c -------------------------------------------------------------------------------- /3rdparty/mbedtls-2.28.8/tests/ssl-opt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/mbedtls-2.28.8/tests/ssl-opt.sh -------------------------------------------------------------------------------- /3rdparty/noise.sys/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/bugs.txt -------------------------------------------------------------------------------- /3rdparty/noise.sys/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/changes.txt -------------------------------------------------------------------------------- /3rdparty/noise.sys/noise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/noise.txt -------------------------------------------------------------------------------- /3rdparty/noise.sys/noise386.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/noise386.sys -------------------------------------------------------------------------------- /3rdparty/noise.sys/noise586.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/noise586.sys -------------------------------------------------------------------------------- /3rdparty/noise.sys/readme.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/readme.1st -------------------------------------------------------------------------------- /3rdparty/noise.sys/sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/sample.exe -------------------------------------------------------------------------------- /3rdparty/noise.sys/sample_c.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/sample_c.dif -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/cpuid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/cpuid.inc -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/demo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/demo/makefile -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/demo/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/demo/sample.c -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/demo/usuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/demo/usuals.h -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/initnoise.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/initnoise.inc -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/license.txt -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/makefile -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/multiplex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/multiplex.inc -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/noise.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/noise.asm -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/noise.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/noise.def -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/noise.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/noise.mac -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/pat/devlod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/pat/devlod.sh -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/pat/drvload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/pat/drvload.sh -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/pat/idrv106.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/pat/idrv106.sh -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/pat/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/pat/readme -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/printf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/printf.inc -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/sha.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/src/sha.inc -------------------------------------------------------------------------------- /3rdparty/noise.sys/src/version: -------------------------------------------------------------------------------- 1 | Version 0.6.3a1 2 | -------------------------------------------------------------------------------- /3rdparty/noise.sys/technote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/technote.txt -------------------------------------------------------------------------------- /3rdparty/noise.sys/to-do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/3rdparty/noise.sys/to-do.txt -------------------------------------------------------------------------------- /CWSDPMI.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/CWSDPMI.EXE -------------------------------------------------------------------------------- /HTTPDOS.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/HTTPDOS.INI -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/Makefile.linux -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/README.md -------------------------------------------------------------------------------- /WATTCP.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/WATTCP.CFG -------------------------------------------------------------------------------- /cert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/cert.conf -------------------------------------------------------------------------------- /csr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/csr.conf -------------------------------------------------------------------------------- /genkeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/genkeys.sh -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/src/main.h -------------------------------------------------------------------------------- /src/middleware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/src/middleware.c -------------------------------------------------------------------------------- /src/middleware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/src/middleware.h -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/src/server.c -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/src/server.h -------------------------------------------------------------------------------- /static/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/static/index.htm -------------------------------------------------------------------------------- /static/sub.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/static/sub.htm -------------------------------------------------------------------------------- /static/superilu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/httpDOS/HEAD/static/superilu.png --------------------------------------------------------------------------------