├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Resources ├── commandDictionary.plist └── extraCommandsDictionary.plist ├── adv_cmds-adv_cmds-199.0.1 └── stty │ ├── cchar.c │ ├── extern.h │ ├── gfmt.c │ ├── key.c │ ├── modes.c │ ├── print.c │ ├── stty.1 │ ├── stty.c │ ├── stty.h │ ├── stty.plist.part │ └── util.c ├── awk-23.30.1 ├── Makefile ├── awk.plist ├── awk.tar.gz ├── awk.xcodeproj │ └── project.pbxproj └── src │ ├── FIXES │ ├── README │ ├── awk.1 │ ├── awk.h │ ├── awkgram.y │ ├── b.c │ ├── buildwin.bat │ ├── lex.c │ ├── lib.c │ ├── main.c │ ├── makefile │ ├── makefile.win │ ├── maketab.c │ ├── missing95.c │ ├── parse.c │ ├── proctab.c │ ├── proto.h │ ├── run.c │ ├── tran.c │ ├── vcvars32.bat │ ├── ytab.c │ ├── ytab.h │ ├── ytabc.bak │ └── ytabh.bak ├── awk-awk-35 ├── README.md ├── awk.plist ├── awk.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── src │ ├── .gitignore.dist │ ├── ChangeLog │ ├── FIXES │ ├── LICENSE │ ├── README.md │ ├── REGRESS │ ├── TODO │ ├── awk.1 │ ├── awk.h │ ├── awkgram.tab.c │ ├── awkgram.tab.h │ ├── awkgram.y │ ├── b.c │ ├── bugs-fixed │ ├── README │ ├── REGRESS │ ├── a-format.awk │ ├── a-format.bad │ ├── a-format.ok │ ├── concat-assign-same.awk │ ├── concat-assign-same.bad │ ├── concat-assign-same.ok │ ├── decr-NF.awk │ ├── decr-NF.bad │ ├── decr-NF.ok │ ├── fmt-overflow.awk │ ├── fmt-overflow.ok │ ├── fs-overflow.awk │ ├── fs-overflow.ok │ ├── getline-numeric.awk │ ├── getline-numeric.bad │ ├── getline-numeric.in │ ├── getline-numeric.ok │ ├── missing-precision.awk │ ├── missing-precision.ok │ ├── negative-nf.awk │ ├── negative-nf.ok │ ├── nf-self-assign.awk │ ├── nf-self-assign.bad │ ├── nf-self-assign.ok │ ├── numeric-fs.awk │ ├── numeric-fs.ok │ ├── numeric-output-seps.awk │ ├── numeric-output-seps.bad │ ├── numeric-output-seps.ok │ ├── numeric-rs.awk │ ├── numeric-rs.bad │ ├── numeric-rs.ok │ ├── numeric-subsep.awk │ ├── numeric-subsep.bad │ ├── numeric-subsep.ok │ ├── ofs-rebuild.awk │ ├── ofs-rebuild.bad │ ├── ofs-rebuild.ok │ ├── pfile-overflow.awk │ ├── pfile-overflow.ok │ ├── rs_underflow.awk │ ├── rs_underflow.in │ ├── rs_underflow.ok │ ├── space.awk │ ├── space.bad │ ├── space.ok │ ├── split-fs-from-array.awk │ ├── split-fs-from-array.ok │ ├── string-conv.awk │ ├── string-conv.bad │ ├── string-conv.ok │ ├── subsep-overflow.awk │ ├── subsep-overflow.ok │ ├── system-status.awk │ ├── system-status.bad │ ├── system-status.ok │ ├── unary-plus.awk │ ├── unary-plus.bad │ └── unary-plus.ok │ ├── lex.c │ ├── lib.c │ ├── main.c │ ├── makefile │ ├── maketab.c │ ├── parse.c │ ├── proctab.c │ ├── proto.h │ ├── run.c │ ├── testdir │ ├── Compare.T1 │ ├── Compare.drek │ ├── Compare.p │ ├── Compare.t │ ├── Compare.tt │ ├── NOTES │ ├── README.TESTS │ ├── REGRESS │ ├── T.-f-f │ ├── T.argv │ ├── T.arnold │ ├── T.beebe │ ├── T.builtin │ ├── T.chem │ ├── T.close │ ├── T.clv │ ├── T.csconcat │ ├── T.delete │ ├── T.errmsg │ ├── T.expr │ ├── T.exprconv │ ├── T.flags │ ├── T.func │ ├── T.gawk │ ├── T.getline │ ├── T.int-expr │ ├── T.latin1 │ ├── T.lilly │ ├── T.main │ ├── T.misc │ ├── T.multibyte │ ├── T.nextfile │ ├── T.overflow │ ├── T.re │ ├── T.recache │ ├── T.redir │ ├── T.split │ ├── T.sub │ ├── T.system │ ├── arnold-fixes.tar │ ├── awk_639_cmds-a.tmp │ ├── awk_639_cmds-alpha.tmp │ ├── awk_639_cmds-or.tmp │ ├── awk_639_cmds.tmp │ ├── beebe.tar │ ├── bib │ ├── bundle.awk │ ├── chem.awk │ ├── cleanup │ ├── countries │ ├── ctimes │ ├── echo.c │ ├── funstack.awk │ ├── funstack.in │ ├── funstack.ok │ ├── ind │ ├── latin1 │ ├── lilly.ifile │ ├── lilly.progs │ ├── lsd1.p │ ├── multibyte │ ├── multibyte-noalpha │ ├── multibyte-noletters │ ├── multibyte-onlysomembchars │ ├── multibyte-replaced │ ├── p.1 │ ├── p.10 │ ├── p.11 │ ├── p.12 │ ├── p.13 │ ├── p.14 │ ├── p.15 │ ├── p.16 │ ├── p.17 │ ├── p.18 │ ├── p.19 │ ├── p.2 │ ├── p.20 │ ├── p.21 │ ├── p.21a │ ├── p.22 │ ├── p.23 │ ├── p.24 │ ├── p.25 │ ├── p.26 │ ├── p.26a │ ├── p.27 │ ├── p.28 │ ├── p.29 │ ├── p.3 │ ├── p.30 │ ├── p.31 │ ├── p.32 │ ├── p.33 │ ├── p.34 │ ├── p.35 │ ├── p.36 │ ├── p.37 │ ├── p.38 │ ├── p.39 │ ├── p.4 │ ├── p.40 │ ├── p.41 │ ├── p.42 │ ├── p.43 │ ├── p.44 │ ├── p.45 │ ├── p.46 │ ├── p.47 │ ├── p.48 │ ├── p.48a │ ├── p.48b │ ├── p.49 │ ├── p.5 │ ├── p.50 │ ├── p.51 │ ├── p.52 │ ├── p.5a │ ├── p.6 │ ├── p.7 │ ├── p.8 │ ├── p.9 │ ├── p.table │ ├── penicil.p │ ├── res.p │ ├── sgi.ctimes │ ├── t.0 │ ├── t.0a │ ├── t.1 │ ├── t.1.x │ ├── t.2 │ ├── t.2.x │ ├── t.3 │ ├── t.3.x │ ├── t.4 │ ├── t.4.x │ ├── t.5.x │ ├── t.6 │ ├── t.6.x │ ├── t.6a │ ├── t.6b │ ├── t.8.x │ ├── t.8.y │ ├── t.NF │ ├── t.addops │ ├── t.aeiou │ ├── t.aeiouy │ ├── t.arith │ ├── t.array │ ├── t.array1 │ ├── t.array2 │ ├── t.assert │ ├── t.avg │ ├── t.b.x │ ├── t.be │ ├── t.beginexit │ ├── t.beginnext │ ├── t.break │ ├── t.break1 │ ├── t.break2 │ ├── t.break3 │ ├── t.bug1 │ ├── t.builtins │ ├── t.cat │ ├── t.cat1 │ ├── t.cat2 │ ├── t.cmp │ ├── t.coerce │ ├── t.coerce2 │ ├── t.comment │ ├── t.comment1 │ ├── t.concat │ ├── t.cond │ ├── t.contin │ ├── t.count │ ├── t.crlf │ ├── t.cum │ ├── t.d.x │ ├── t.delete0 │ ├── t.delete1 │ ├── t.delete2 │ ├── t.delete3 │ ├── t.do │ ├── t.e │ ├── t.else │ ├── t.exit │ ├── t.exit1 │ ├── t.f │ ├── t.f.x │ ├── t.f0 │ ├── t.f1 │ ├── t.f2 │ ├── t.f3 │ ├── t.f4 │ ├── t.for │ ├── t.for1 │ ├── t.for2 │ ├── t.for3 │ ├── t.format4 │ ├── t.fun │ ├── t.fun0 │ ├── t.fun1 │ ├── t.fun2 │ ├── t.fun3 │ ├── t.fun4 │ ├── t.fun5 │ ├── t.getline1 │ ├── t.getval │ ├── t.gsub │ ├── t.gsub1 │ ├── t.gsub3 │ ├── t.gsub4 │ ├── t.i.x │ ├── t.if │ ├── t.in │ ├── t.in1 │ ├── t.in2 │ ├── t.in3 │ ├── t.incr │ ├── t.incr2 │ ├── t.incr3 │ ├── t.index │ ├── t.intest │ ├── t.intest2 │ ├── t.j.x │ ├── t.longstr │ ├── t.makef │ ├── t.match │ ├── t.match1 │ ├── t.max │ ├── t.monotone │ ├── t.nameval │ ├── t.next │ ├── t.not │ ├── t.null0 │ ├── t.ofmt │ ├── t.ofs │ ├── t.ors │ ├── t.pat │ ├── t.pipe │ ├── t.pp │ ├── t.pp1 │ ├── t.pp2 │ ├── t.printf │ ├── t.printf2 │ ├── t.quote │ ├── t.randk │ ├── t.re1 │ ├── t.re1a │ ├── t.re2 │ ├── t.re3 │ ├── t.re4 │ ├── t.re5 │ ├── t.re7 │ ├── t.reFS │ ├── t.rec │ ├── t.redir1 │ ├── t.reg │ ├── t.roff │ ├── t.sep │ ├── t.seqno │ ├── t.set0 │ ├── t.set0a │ ├── t.set0b │ ├── t.set1 │ ├── t.set2 │ ├── t.set3 │ ├── t.split1 │ ├── t.split2 │ ├── t.split2a │ ├── t.split3 │ ├── t.split4 │ ├── t.split8 │ ├── t.split9 │ ├── t.split9a │ ├── t.stately │ ├── t.strcmp │ ├── t.strcmp1 │ ├── t.strnum │ ├── t.sub0 │ ├── t.sub1 │ ├── t.sub2 │ ├── t.sub3 │ ├── t.substr │ ├── t.substr1 │ ├── t.time │ ├── t.vf │ ├── t.vf1 │ ├── t.vf2 │ ├── t.vf3 │ ├── t.x │ ├── td.1 │ ├── test.countries │ ├── test.data │ ├── time.c │ ├── try │ ├── tt.01 │ ├── tt.02 │ ├── tt.02a │ ├── tt.03 │ ├── tt.03a │ ├── tt.04 │ ├── tt.05 │ ├── tt.06 │ ├── tt.07 │ ├── tt.08 │ ├── tt.09 │ ├── tt.10 │ ├── tt.10a │ ├── tt.11 │ ├── tt.12 │ ├── tt.13 │ ├── tt.13a │ ├── tt.14 │ ├── tt.15 │ ├── tt.16 │ ├── tt.big │ ├── u.main │ ├── unbundle.awk │ ├── xc │ └── yc │ └── tran.c ├── awk ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Info.plist └── awk.h ├── bsd_diff ├── Makefile ├── diff.c ├── diff.h ├── diffdir.c ├── diffreg.c ├── xmalloc.c └── xmalloc.h ├── bsd_find ├── Makefile ├── extern.h ├── find.c ├── find.h ├── function.c ├── getdate.y ├── ls.c ├── main.c ├── misc.c ├── operator.c ├── option.c └── y.tab.c ├── curl ├── Info.plist ├── README.APPLE ├── config_iphone │ └── curl_config.h ├── config_mac │ └── curl_config.h ├── curl.plist ├── curl.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── curl │ ├── CHANGES │ ├── CMake │ │ ├── CMakeConfigurableFile.in │ │ ├── CurlSymbolHiding.cmake │ │ ├── CurlTests.c │ │ ├── FindBearSSL.cmake │ │ ├── FindBrotli.cmake │ │ ├── FindCARES.cmake │ │ ├── FindGSS.cmake │ │ ├── FindLibPSL.cmake │ │ ├── FindLibSSH2.cmake │ │ ├── FindMSH3.cmake │ │ ├── FindMbedTLS.cmake │ │ ├── FindNGHTTP2.cmake │ │ ├── FindNGHTTP3.cmake │ │ ├── FindNGTCP2.cmake │ │ ├── FindNSS.cmake │ │ ├── FindQUICHE.cmake │ │ ├── FindWolfSSL.cmake │ │ ├── FindZstd.cmake │ │ ├── Macros.cmake │ │ ├── OtherTests.cmake │ │ ├── PickyWarnings.cmake │ │ ├── Platforms │ │ │ └── WindowsCache.cmake │ │ ├── Utilities.cmake │ │ ├── cmake_uninstall.cmake.in │ │ └── curl-config.cmake.in │ ├── CMakeLists.txt │ ├── COPYING │ ├── MacOSX-Framework │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── RELEASE-NOTES │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── buildconf │ ├── buildconf.bat │ ├── compile │ ├── config.guess │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── curl-config │ ├── curl-config.in │ ├── depcomp │ ├── docs │ │ ├── ALTSVC.md │ │ ├── BINDINGS.md │ │ ├── BUFREF.md │ │ ├── BUG-BOUNTY.md │ │ ├── BUGS.md │ │ ├── CHECKSRC.md │ │ ├── CIPHERS.md │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CODE_REVIEW.md │ │ ├── CODE_STYLE.md │ │ ├── CONNECTION-FILTERS.md │ │ ├── CONTRIBUTE.md │ │ ├── CURL-DISABLE.md │ │ ├── DEPRECATE.md │ │ ├── DYNBUF.md │ │ ├── EARLY-RELEASE.md │ │ ├── EXPERIMENTAL.md │ │ ├── FAQ │ │ ├── FEATURES.md │ │ ├── GOVERNANCE.md │ │ ├── HELP-US.md │ │ ├── HISTORY.md │ │ ├── HSTS.md │ │ ├── HTTP-COOKIES.md │ │ ├── HTTP2.md │ │ ├── HTTP3.md │ │ ├── HYPER.md │ │ ├── INSTALL │ │ ├── INSTALL.cmake │ │ ├── INSTALL.md │ │ ├── INTERNALS.md │ │ ├── KNOWN_BUGS │ │ ├── MAIL-ETIQUETTE │ │ ├── MQTT.md │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEW-PROTOCOL.md │ │ ├── PARALLEL-TRANSFERS.md │ │ ├── README.md │ │ ├── RELEASE-PROCEDURE.md │ │ ├── ROADMAP.md │ │ ├── RUSTLS.md │ │ ├── SECURITY-ADVISORY.md │ │ ├── SECURITY-PROCESS.md │ │ ├── SSL-PROBLEMS.md │ │ ├── SSLCERTS.md │ │ ├── THANKS │ │ ├── TODO │ │ ├── TheArtOfHttpScripting.md │ │ ├── URL-SYNTAX.md │ │ ├── VERSIONS.md │ │ ├── WEBSOCKET.md │ │ ├── cmdline-opts │ │ │ ├── CMakeLists.txt │ │ │ ├── MANPAGE.md │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── gen.pl │ │ │ ├── page-footer │ │ │ └── page-header │ │ ├── curl-config.1 │ │ ├── curl.1 │ │ ├── examples │ │ │ ├── .checksrc │ │ │ ├── .deps │ │ │ │ ├── 10-at-a-time.Po │ │ │ │ ├── altsvc.Po │ │ │ │ ├── anyauthput.Po │ │ │ │ ├── certinfo.Po │ │ │ │ ├── chkspeed.Po │ │ │ │ ├── cookie_interface.Po │ │ │ │ ├── debug.Po │ │ │ │ ├── externalsocket.Po │ │ │ │ ├── fileupload.Po │ │ │ │ ├── ftp-wildcard.Po │ │ │ │ ├── ftpget.Po │ │ │ │ ├── ftpgetinfo.Po │ │ │ │ ├── ftpgetresp.Po │ │ │ │ ├── ftpsget.Po │ │ │ │ ├── ftpupload.Po │ │ │ │ ├── ftpuploadfrommem.Po │ │ │ │ ├── ftpuploadresume.Po │ │ │ │ ├── getinfo.Po │ │ │ │ ├── getinmemory.Po │ │ │ │ ├── getredirect.Po │ │ │ │ ├── getreferrer.Po │ │ │ │ ├── headerapi.Po │ │ │ │ ├── http-post.Po │ │ │ │ ├── http2-download.Po │ │ │ │ ├── http2-pushinmemory.Po │ │ │ │ ├── http2-serverpush.Po │ │ │ │ ├── http2-upload.Po │ │ │ │ ├── http3-present.Po │ │ │ │ ├── http3.Po │ │ │ │ ├── httpcustomheader.Po │ │ │ │ ├── httpput-postfields.Po │ │ │ │ ├── httpput.Po │ │ │ │ ├── https.Po │ │ │ │ ├── imap-append.Po │ │ │ │ ├── imap-authzid.Po │ │ │ │ ├── imap-copy.Po │ │ │ │ ├── imap-create.Po │ │ │ │ ├── imap-delete.Po │ │ │ │ ├── imap-examine.Po │ │ │ │ ├── imap-fetch.Po │ │ │ │ ├── imap-list.Po │ │ │ │ ├── imap-lsub.Po │ │ │ │ ├── imap-multi.Po │ │ │ │ ├── imap-noop.Po │ │ │ │ ├── imap-search.Po │ │ │ │ ├── imap-ssl.Po │ │ │ │ ├── imap-store.Po │ │ │ │ ├── imap-tls.Po │ │ │ │ ├── multi-app.Po │ │ │ │ ├── multi-debugcallback.Po │ │ │ │ ├── multi-double.Po │ │ │ │ ├── multi-formadd.Po │ │ │ │ ├── multi-legacy.Po │ │ │ │ ├── multi-post.Po │ │ │ │ ├── multi-single.Po │ │ │ │ ├── parseurl.Po │ │ │ │ ├── persistent.Po │ │ │ │ ├── pop3-authzid.Po │ │ │ │ ├── pop3-dele.Po │ │ │ │ ├── pop3-list.Po │ │ │ │ ├── pop3-multi.Po │ │ │ │ ├── pop3-noop.Po │ │ │ │ ├── pop3-retr.Po │ │ │ │ ├── pop3-ssl.Po │ │ │ │ ├── pop3-stat.Po │ │ │ │ ├── pop3-tls.Po │ │ │ │ ├── pop3-top.Po │ │ │ │ ├── pop3-uidl.Po │ │ │ │ ├── post-callback.Po │ │ │ │ ├── postinmemory.Po │ │ │ │ ├── postit2-formadd.Po │ │ │ │ ├── postit2.Po │ │ │ │ ├── progressfunc.Po │ │ │ │ ├── protofeats.Po │ │ │ │ ├── resolve.Po │ │ │ │ ├── sendrecv.Po │ │ │ │ ├── sepheaders.Po │ │ │ │ ├── sftpget.Po │ │ │ │ ├── sftpuploadresume.Po │ │ │ │ ├── shared-connection-cache.Po │ │ │ │ ├── simple.Po │ │ │ │ ├── simplepost.Po │ │ │ │ ├── simplessl.Po │ │ │ │ ├── smtp-authzid.Po │ │ │ │ ├── smtp-expn.Po │ │ │ │ ├── smtp-mail.Po │ │ │ │ ├── smtp-mime.Po │ │ │ │ ├── smtp-multi.Po │ │ │ │ ├── smtp-ssl.Po │ │ │ │ ├── smtp-tls.Po │ │ │ │ ├── smtp-vrfy.Po │ │ │ │ ├── sslbackend.Po │ │ │ │ ├── url2file.Po │ │ │ │ └── urlapi.Po │ │ │ ├── 10-at-a-time.c │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.example │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.mk │ │ │ ├── README.md │ │ │ ├── altsvc.c │ │ │ ├── anyauthput.c │ │ │ ├── cacertinmem.c │ │ │ ├── certinfo.c │ │ │ ├── chkspeed.c │ │ │ ├── cookie_interface.c │ │ │ ├── crawler.c │ │ │ ├── debug.c │ │ │ ├── ephiperfifo.c │ │ │ ├── evhiperfifo.c │ │ │ ├── externalsocket.c │ │ │ ├── fileupload.c │ │ │ ├── ftp-wildcard.c │ │ │ ├── ftpget.c │ │ │ ├── ftpgetinfo.c │ │ │ ├── ftpgetresp.c │ │ │ ├── ftpsget.c │ │ │ ├── ftpupload.c │ │ │ ├── ftpuploadfrommem.c │ │ │ ├── ftpuploadresume.c │ │ │ ├── getinfo.c │ │ │ ├── getinmemory.c │ │ │ ├── getredirect.c │ │ │ ├── getreferrer.c │ │ │ ├── ghiper.c │ │ │ ├── headerapi.c │ │ │ ├── hiperfifo.c │ │ │ ├── href_extractor.c │ │ │ ├── htmltidy.c │ │ │ ├── htmltitle.cpp │ │ │ ├── http-post.c │ │ │ ├── http2-download.c │ │ │ ├── http2-pushinmemory.c │ │ │ ├── http2-serverpush.c │ │ │ ├── http2-upload.c │ │ │ ├── http3-present.c │ │ │ ├── http3.c │ │ │ ├── httpcustomheader.c │ │ │ ├── httpput-postfields.c │ │ │ ├── httpput.c │ │ │ ├── https.c │ │ │ ├── imap-append.c │ │ │ ├── imap-authzid.c │ │ │ ├── imap-copy.c │ │ │ ├── imap-create.c │ │ │ ├── imap-delete.c │ │ │ ├── imap-examine.c │ │ │ ├── imap-fetch.c │ │ │ ├── imap-list.c │ │ │ ├── imap-lsub.c │ │ │ ├── imap-multi.c │ │ │ ├── imap-noop.c │ │ │ ├── imap-search.c │ │ │ ├── imap-ssl.c │ │ │ ├── imap-store.c │ │ │ ├── imap-tls.c │ │ │ ├── multi-app.c │ │ │ ├── multi-debugcallback.c │ │ │ ├── multi-double.c │ │ │ ├── multi-event.c │ │ │ ├── multi-formadd.c │ │ │ ├── multi-legacy.c │ │ │ ├── multi-post.c │ │ │ ├── multi-single.c │ │ │ ├── multi-uv.c │ │ │ ├── multithread.c │ │ │ ├── opensslthreadlock.c │ │ │ ├── parseurl.c │ │ │ ├── persistent.c │ │ │ ├── pop3-authzid.c │ │ │ ├── pop3-dele.c │ │ │ ├── pop3-list.c │ │ │ ├── pop3-multi.c │ │ │ ├── pop3-noop.c │ │ │ ├── pop3-retr.c │ │ │ ├── pop3-ssl.c │ │ │ ├── pop3-stat.c │ │ │ ├── pop3-tls.c │ │ │ ├── pop3-top.c │ │ │ ├── pop3-uidl.c │ │ │ ├── post-callback.c │ │ │ ├── postinmemory.c │ │ │ ├── postit2-formadd.c │ │ │ ├── postit2.c │ │ │ ├── progressfunc.c │ │ │ ├── protofeats.c │ │ │ ├── resolve.c │ │ │ ├── sendrecv.c │ │ │ ├── sepheaders.c │ │ │ ├── sessioninfo.c │ │ │ ├── sftpget.c │ │ │ ├── sftpuploadresume.c │ │ │ ├── shared-connection-cache.c │ │ │ ├── simple.c │ │ │ ├── simplepost.c │ │ │ ├── simplessl.c │ │ │ ├── smooth-gtk-thread.c │ │ │ ├── smtp-authzid.c │ │ │ ├── smtp-expn.c │ │ │ ├── smtp-mail.c │ │ │ ├── smtp-mime.c │ │ │ ├── smtp-multi.c │ │ │ ├── smtp-ssl.c │ │ │ ├── smtp-tls.c │ │ │ ├── smtp-vrfy.c │ │ │ ├── sslbackend.c │ │ │ ├── synctime.c │ │ │ ├── threaded-ssl.c │ │ │ ├── url2file.c │ │ │ ├── urlapi.c │ │ │ ├── usercertinmem.c │ │ │ ├── version-check.pl │ │ │ └── xmlstream.c │ │ ├── libcurl │ │ │ ├── ABI.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── curl_easy_cleanup.3 │ │ │ ├── curl_easy_duphandle.3 │ │ │ ├── curl_easy_escape.3 │ │ │ ├── curl_easy_getinfo.3 │ │ │ ├── curl_easy_header.3 │ │ │ ├── curl_easy_init.3 │ │ │ ├── curl_easy_nextheader.3 │ │ │ ├── curl_easy_option_by_id.3 │ │ │ ├── curl_easy_option_by_name.3 │ │ │ ├── curl_easy_option_next.3 │ │ │ ├── curl_easy_pause.3 │ │ │ ├── curl_easy_perform.3 │ │ │ ├── curl_easy_recv.3 │ │ │ ├── curl_easy_reset.3 │ │ │ ├── curl_easy_send.3 │ │ │ ├── curl_easy_setopt.3 │ │ │ ├── curl_easy_strerror.3 │ │ │ ├── curl_easy_unescape.3 │ │ │ ├── curl_easy_upkeep.3 │ │ │ ├── curl_escape.3 │ │ │ ├── curl_formadd.3 │ │ │ ├── curl_formfree.3 │ │ │ ├── curl_formget.3 │ │ │ ├── curl_free.3 │ │ │ ├── curl_getdate.3 │ │ │ ├── curl_getenv.3 │ │ │ ├── curl_global_cleanup.3 │ │ │ ├── curl_global_init.3 │ │ │ ├── curl_global_init_mem.3 │ │ │ ├── curl_global_sslset.3 │ │ │ ├── curl_mime_addpart.3 │ │ │ ├── curl_mime_data.3 │ │ │ ├── curl_mime_data_cb.3 │ │ │ ├── curl_mime_encoder.3 │ │ │ ├── curl_mime_filedata.3 │ │ │ ├── curl_mime_filename.3 │ │ │ ├── curl_mime_free.3 │ │ │ ├── curl_mime_headers.3 │ │ │ ├── curl_mime_init.3 │ │ │ ├── curl_mime_name.3 │ │ │ ├── curl_mime_subparts.3 │ │ │ ├── curl_mime_type.3 │ │ │ ├── curl_mprintf.3 │ │ │ ├── curl_multi_add_handle.3 │ │ │ ├── curl_multi_assign.3 │ │ │ ├── curl_multi_cleanup.3 │ │ │ ├── curl_multi_fdset.3 │ │ │ ├── curl_multi_info_read.3 │ │ │ ├── curl_multi_init.3 │ │ │ ├── curl_multi_perform.3 │ │ │ ├── curl_multi_poll.3 │ │ │ ├── curl_multi_remove_handle.3 │ │ │ ├── curl_multi_setopt.3 │ │ │ ├── curl_multi_socket.3 │ │ │ ├── curl_multi_socket_action.3 │ │ │ ├── curl_multi_socket_all.3 │ │ │ ├── curl_multi_strerror.3 │ │ │ ├── curl_multi_timeout.3 │ │ │ ├── curl_multi_wait.3 │ │ │ ├── curl_multi_wakeup.3 │ │ │ ├── curl_share_cleanup.3 │ │ │ ├── curl_share_init.3 │ │ │ ├── curl_share_setopt.3 │ │ │ ├── curl_share_strerror.3 │ │ │ ├── curl_slist_append.3 │ │ │ ├── curl_slist_free_all.3 │ │ │ ├── curl_strequal.3 │ │ │ ├── curl_strnequal.3 │ │ │ ├── curl_unescape.3 │ │ │ ├── curl_url.3 │ │ │ ├── curl_url_cleanup.3 │ │ │ ├── curl_url_dup.3 │ │ │ ├── curl_url_get.3 │ │ │ ├── curl_url_set.3 │ │ │ ├── curl_url_strerror.3 │ │ │ ├── curl_version.3 │ │ │ ├── curl_version_info.3 │ │ │ ├── curl_ws_meta.3 │ │ │ ├── curl_ws_recv.3 │ │ │ ├── curl_ws_send.3 │ │ │ ├── libcurl-easy.3 │ │ │ ├── libcurl-env.3 │ │ │ ├── libcurl-errors.3 │ │ │ ├── libcurl-multi.3 │ │ │ ├── libcurl-security.3 │ │ │ ├── libcurl-share.3 │ │ │ ├── libcurl-symbols.3 │ │ │ ├── libcurl-thread.3 │ │ │ ├── libcurl-tutorial.3 │ │ │ ├── libcurl-url.3 │ │ │ ├── libcurl.3 │ │ │ ├── libcurl.m4 │ │ │ ├── mksymbolsmanpage.pl │ │ │ ├── opts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CURLINFO_ACTIVESOCKET.3 │ │ │ │ ├── CURLINFO_APPCONNECT_TIME.3 │ │ │ │ ├── CURLINFO_APPCONNECT_TIME_T.3 │ │ │ │ ├── CURLINFO_CAINFO.3 │ │ │ │ ├── CURLINFO_CAPATH.3 │ │ │ │ ├── CURLINFO_CERTINFO.3 │ │ │ │ ├── CURLINFO_CONDITION_UNMET.3 │ │ │ │ ├── CURLINFO_CONNECT_TIME.3 │ │ │ │ ├── CURLINFO_CONNECT_TIME_T.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_UPLOAD.3 │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 │ │ │ │ ├── CURLINFO_CONTENT_TYPE.3 │ │ │ │ ├── CURLINFO_COOKIELIST.3 │ │ │ │ ├── CURLINFO_EFFECTIVE_METHOD.3 │ │ │ │ ├── CURLINFO_EFFECTIVE_URL.3 │ │ │ │ ├── CURLINFO_FILETIME.3 │ │ │ │ ├── CURLINFO_FILETIME_T.3 │ │ │ │ ├── CURLINFO_FTP_ENTRY_PATH.3 │ │ │ │ ├── CURLINFO_HEADER_SIZE.3 │ │ │ │ ├── CURLINFO_HTTPAUTH_AVAIL.3 │ │ │ │ ├── CURLINFO_HTTP_CONNECTCODE.3 │ │ │ │ ├── CURLINFO_HTTP_VERSION.3 │ │ │ │ ├── CURLINFO_LASTSOCKET.3 │ │ │ │ ├── CURLINFO_LOCAL_IP.3 │ │ │ │ ├── CURLINFO_LOCAL_PORT.3 │ │ │ │ ├── CURLINFO_NAMELOOKUP_TIME.3 │ │ │ │ ├── CURLINFO_NAMELOOKUP_TIME_T.3 │ │ │ │ ├── CURLINFO_NUM_CONNECTS.3 │ │ │ │ ├── CURLINFO_OS_ERRNO.3 │ │ │ │ ├── CURLINFO_PRETRANSFER_TIME.3 │ │ │ │ ├── CURLINFO_PRETRANSFER_TIME_T.3 │ │ │ │ ├── CURLINFO_PRIMARY_IP.3 │ │ │ │ ├── CURLINFO_PRIMARY_PORT.3 │ │ │ │ ├── CURLINFO_PRIVATE.3 │ │ │ │ ├── CURLINFO_PROTOCOL.3 │ │ │ │ ├── CURLINFO_PROXYAUTH_AVAIL.3 │ │ │ │ ├── CURLINFO_PROXY_ERROR.3 │ │ │ │ ├── CURLINFO_PROXY_SSL_VERIFYRESULT.3 │ │ │ │ ├── CURLINFO_REDIRECT_COUNT.3 │ │ │ │ ├── CURLINFO_REDIRECT_TIME.3 │ │ │ │ ├── CURLINFO_REDIRECT_TIME_T.3 │ │ │ │ ├── CURLINFO_REDIRECT_URL.3 │ │ │ │ ├── CURLINFO_REFERER.3 │ │ │ │ ├── CURLINFO_REQUEST_SIZE.3 │ │ │ │ ├── CURLINFO_RESPONSE_CODE.3 │ │ │ │ ├── CURLINFO_RETRY_AFTER.3 │ │ │ │ ├── CURLINFO_RTSP_CLIENT_CSEQ.3 │ │ │ │ ├── CURLINFO_RTSP_CSEQ_RECV.3 │ │ │ │ ├── CURLINFO_RTSP_SERVER_CSEQ.3 │ │ │ │ ├── CURLINFO_RTSP_SESSION_ID.3 │ │ │ │ ├── CURLINFO_SCHEME.3 │ │ │ │ ├── CURLINFO_SIZE_DOWNLOAD.3 │ │ │ │ ├── CURLINFO_SIZE_DOWNLOAD_T.3 │ │ │ │ ├── CURLINFO_SIZE_UPLOAD.3 │ │ │ │ ├── CURLINFO_SIZE_UPLOAD_T.3 │ │ │ │ ├── CURLINFO_SPEED_DOWNLOAD.3 │ │ │ │ ├── CURLINFO_SPEED_DOWNLOAD_T.3 │ │ │ │ ├── CURLINFO_SPEED_UPLOAD.3 │ │ │ │ ├── CURLINFO_SPEED_UPLOAD_T.3 │ │ │ │ ├── CURLINFO_SSL_ENGINES.3 │ │ │ │ ├── CURLINFO_SSL_VERIFYRESULT.3 │ │ │ │ ├── CURLINFO_STARTTRANSFER_TIME.3 │ │ │ │ ├── CURLINFO_STARTTRANSFER_TIME_T.3 │ │ │ │ ├── CURLINFO_TLS_SESSION.3 │ │ │ │ ├── CURLINFO_TLS_SSL_PTR.3 │ │ │ │ ├── CURLINFO_TOTAL_TIME.3 │ │ │ │ ├── CURLINFO_TOTAL_TIME_T.3 │ │ │ │ ├── CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 │ │ │ │ ├── CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 │ │ │ │ ├── CURLMOPT_MAXCONNECTS.3 │ │ │ │ ├── CURLMOPT_MAX_CONCURRENT_STREAMS.3 │ │ │ │ ├── CURLMOPT_MAX_HOST_CONNECTIONS.3 │ │ │ │ ├── CURLMOPT_MAX_PIPELINE_LENGTH.3 │ │ │ │ ├── CURLMOPT_MAX_TOTAL_CONNECTIONS.3 │ │ │ │ ├── CURLMOPT_PIPELINING.3 │ │ │ │ ├── CURLMOPT_PIPELINING_SERVER_BL.3 │ │ │ │ ├── CURLMOPT_PIPELINING_SITE_BL.3 │ │ │ │ ├── CURLMOPT_PUSHDATA.3 │ │ │ │ ├── CURLMOPT_PUSHFUNCTION.3 │ │ │ │ ├── CURLMOPT_SOCKETDATA.3 │ │ │ │ ├── CURLMOPT_SOCKETFUNCTION.3 │ │ │ │ ├── CURLMOPT_TIMERDATA.3 │ │ │ │ ├── CURLMOPT_TIMERFUNCTION.3 │ │ │ │ ├── CURLOPT_ABSTRACT_UNIX_SOCKET.3 │ │ │ │ ├── CURLOPT_ACCEPTTIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_ACCEPT_ENCODING.3 │ │ │ │ ├── CURLOPT_ADDRESS_SCOPE.3 │ │ │ │ ├── CURLOPT_ALTSVC.3 │ │ │ │ ├── CURLOPT_ALTSVC_CTRL.3 │ │ │ │ ├── CURLOPT_APPEND.3 │ │ │ │ ├── CURLOPT_AUTOREFERER.3 │ │ │ │ ├── CURLOPT_AWS_SIGV4.3 │ │ │ │ ├── CURLOPT_BUFFERSIZE.3 │ │ │ │ ├── CURLOPT_CAINFO.3 │ │ │ │ ├── CURLOPT_CAINFO_BLOB.3 │ │ │ │ ├── CURLOPT_CAPATH.3 │ │ │ │ ├── CURLOPT_CA_CACHE_TIMEOUT.3 │ │ │ │ ├── CURLOPT_CERTINFO.3 │ │ │ │ ├── CURLOPT_CHUNK_BGN_FUNCTION.3 │ │ │ │ ├── CURLOPT_CHUNK_DATA.3 │ │ │ │ ├── CURLOPT_CHUNK_END_FUNCTION.3 │ │ │ │ ├── CURLOPT_CLOSESOCKETDATA.3 │ │ │ │ ├── CURLOPT_CLOSESOCKETFUNCTION.3 │ │ │ │ ├── CURLOPT_CONNECTTIMEOUT.3 │ │ │ │ ├── CURLOPT_CONNECTTIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_CONNECT_ONLY.3 │ │ │ │ ├── CURLOPT_CONNECT_TO.3 │ │ │ │ ├── CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 │ │ │ │ ├── CURLOPT_CONV_FROM_UTF8_FUNCTION.3 │ │ │ │ ├── CURLOPT_CONV_TO_NETWORK_FUNCTION.3 │ │ │ │ ├── CURLOPT_COOKIE.3 │ │ │ │ ├── CURLOPT_COOKIEFILE.3 │ │ │ │ ├── CURLOPT_COOKIEJAR.3 │ │ │ │ ├── CURLOPT_COOKIELIST.3 │ │ │ │ ├── CURLOPT_COOKIESESSION.3 │ │ │ │ ├── CURLOPT_COPYPOSTFIELDS.3 │ │ │ │ ├── CURLOPT_CRLF.3 │ │ │ │ ├── CURLOPT_CRLFILE.3 │ │ │ │ ├── CURLOPT_CURLU.3 │ │ │ │ ├── CURLOPT_CUSTOMREQUEST.3 │ │ │ │ ├── CURLOPT_DEBUGDATA.3 │ │ │ │ ├── CURLOPT_DEBUGFUNCTION.3 │ │ │ │ ├── CURLOPT_DEFAULT_PROTOCOL.3 │ │ │ │ ├── CURLOPT_DIRLISTONLY.3 │ │ │ │ ├── CURLOPT_DISALLOW_USERNAME_IN_URL.3 │ │ │ │ ├── CURLOPT_DNS_CACHE_TIMEOUT.3 │ │ │ │ ├── CURLOPT_DNS_INTERFACE.3 │ │ │ │ ├── CURLOPT_DNS_LOCAL_IP4.3 │ │ │ │ ├── CURLOPT_DNS_LOCAL_IP6.3 │ │ │ │ ├── CURLOPT_DNS_SERVERS.3 │ │ │ │ ├── CURLOPT_DNS_SHUFFLE_ADDRESSES.3 │ │ │ │ ├── CURLOPT_DNS_USE_GLOBAL_CACHE.3 │ │ │ │ ├── CURLOPT_DOH_SSL_VERIFYHOST.3 │ │ │ │ ├── CURLOPT_DOH_SSL_VERIFYPEER.3 │ │ │ │ ├── CURLOPT_DOH_SSL_VERIFYSTATUS.3 │ │ │ │ ├── CURLOPT_DOH_URL.3 │ │ │ │ ├── CURLOPT_EGDSOCKET.3 │ │ │ │ ├── CURLOPT_ERRORBUFFER.3 │ │ │ │ ├── CURLOPT_EXPECT_100_TIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_FAILONERROR.3 │ │ │ │ ├── CURLOPT_FILETIME.3 │ │ │ │ ├── CURLOPT_FNMATCH_DATA.3 │ │ │ │ ├── CURLOPT_FNMATCH_FUNCTION.3 │ │ │ │ ├── CURLOPT_FOLLOWLOCATION.3 │ │ │ │ ├── CURLOPT_FORBID_REUSE.3 │ │ │ │ ├── CURLOPT_FRESH_CONNECT.3 │ │ │ │ ├── CURLOPT_FTPPORT.3 │ │ │ │ ├── CURLOPT_FTPSSLAUTH.3 │ │ │ │ ├── CURLOPT_FTP_ACCOUNT.3 │ │ │ │ ├── CURLOPT_FTP_ALTERNATIVE_TO_USER.3 │ │ │ │ ├── CURLOPT_FTP_CREATE_MISSING_DIRS.3 │ │ │ │ ├── CURLOPT_FTP_FILEMETHOD.3 │ │ │ │ ├── CURLOPT_FTP_SKIP_PASV_IP.3 │ │ │ │ ├── CURLOPT_FTP_SSL_CCC.3 │ │ │ │ ├── CURLOPT_FTP_USE_EPRT.3 │ │ │ │ ├── CURLOPT_FTP_USE_EPSV.3 │ │ │ │ ├── CURLOPT_FTP_USE_PRET.3 │ │ │ │ ├── CURLOPT_GSSAPI_DELEGATION.3 │ │ │ │ ├── CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_HAPROXYPROTOCOL.3 │ │ │ │ ├── CURLOPT_HEADER.3 │ │ │ │ ├── CURLOPT_HEADERDATA.3 │ │ │ │ ├── CURLOPT_HEADERFUNCTION.3 │ │ │ │ ├── CURLOPT_HEADEROPT.3 │ │ │ │ ├── CURLOPT_HSTS.3 │ │ │ │ ├── CURLOPT_HSTSREADDATA.3 │ │ │ │ ├── CURLOPT_HSTSREADFUNCTION.3 │ │ │ │ ├── CURLOPT_HSTSWRITEDATA.3 │ │ │ │ ├── CURLOPT_HSTSWRITEFUNCTION.3 │ │ │ │ ├── CURLOPT_HSTS_CTRL.3 │ │ │ │ ├── CURLOPT_HTTP09_ALLOWED.3 │ │ │ │ ├── CURLOPT_HTTP200ALIASES.3 │ │ │ │ ├── CURLOPT_HTTPAUTH.3 │ │ │ │ ├── CURLOPT_HTTPGET.3 │ │ │ │ ├── CURLOPT_HTTPHEADER.3 │ │ │ │ ├── CURLOPT_HTTPPOST.3 │ │ │ │ ├── CURLOPT_HTTPPROXYTUNNEL.3 │ │ │ │ ├── CURLOPT_HTTP_CONTENT_DECODING.3 │ │ │ │ ├── CURLOPT_HTTP_TRANSFER_DECODING.3 │ │ │ │ ├── CURLOPT_HTTP_VERSION.3 │ │ │ │ ├── CURLOPT_IGNORE_CONTENT_LENGTH.3 │ │ │ │ ├── CURLOPT_INFILESIZE.3 │ │ │ │ ├── CURLOPT_INFILESIZE_LARGE.3 │ │ │ │ ├── CURLOPT_INTERFACE.3 │ │ │ │ ├── CURLOPT_INTERLEAVEDATA.3 │ │ │ │ ├── CURLOPT_INTERLEAVEFUNCTION.3 │ │ │ │ ├── CURLOPT_IOCTLDATA.3 │ │ │ │ ├── CURLOPT_IOCTLFUNCTION.3 │ │ │ │ ├── CURLOPT_IPRESOLVE.3 │ │ │ │ ├── CURLOPT_ISSUERCERT.3 │ │ │ │ ├── CURLOPT_ISSUERCERT_BLOB.3 │ │ │ │ ├── CURLOPT_KEEP_SENDING_ON_ERROR.3 │ │ │ │ ├── CURLOPT_KEYPASSWD.3 │ │ │ │ ├── CURLOPT_KRBLEVEL.3 │ │ │ │ ├── CURLOPT_LOCALPORT.3 │ │ │ │ ├── CURLOPT_LOCALPORTRANGE.3 │ │ │ │ ├── CURLOPT_LOGIN_OPTIONS.3 │ │ │ │ ├── CURLOPT_LOW_SPEED_LIMIT.3 │ │ │ │ ├── CURLOPT_LOW_SPEED_TIME.3 │ │ │ │ ├── CURLOPT_MAIL_AUTH.3 │ │ │ │ ├── CURLOPT_MAIL_FROM.3 │ │ │ │ ├── CURLOPT_MAIL_RCPT.3 │ │ │ │ ├── CURLOPT_MAIL_RCPT_ALLLOWFAILS.3 │ │ │ │ ├── CURLOPT_MAXAGE_CONN.3 │ │ │ │ ├── CURLOPT_MAXCONNECTS.3 │ │ │ │ ├── CURLOPT_MAXFILESIZE.3 │ │ │ │ ├── CURLOPT_MAXFILESIZE_LARGE.3 │ │ │ │ ├── CURLOPT_MAXLIFETIME_CONN.3 │ │ │ │ ├── CURLOPT_MAXREDIRS.3 │ │ │ │ ├── CURLOPT_MAX_RECV_SPEED_LARGE.3 │ │ │ │ ├── CURLOPT_MAX_SEND_SPEED_LARGE.3 │ │ │ │ ├── CURLOPT_MIMEPOST.3 │ │ │ │ ├── CURLOPT_MIME_OPTIONS.3 │ │ │ │ ├── CURLOPT_NETRC.3 │ │ │ │ ├── CURLOPT_NETRC_FILE.3 │ │ │ │ ├── CURLOPT_NEW_DIRECTORY_PERMS.3 │ │ │ │ ├── CURLOPT_NEW_FILE_PERMS.3 │ │ │ │ ├── CURLOPT_NOBODY.3 │ │ │ │ ├── CURLOPT_NOPROGRESS.3 │ │ │ │ ├── CURLOPT_NOPROXY.3 │ │ │ │ ├── CURLOPT_NOSIGNAL.3 │ │ │ │ ├── CURLOPT_OPENSOCKETDATA.3 │ │ │ │ ├── CURLOPT_OPENSOCKETFUNCTION.3 │ │ │ │ ├── CURLOPT_PASSWORD.3 │ │ │ │ ├── CURLOPT_PATH_AS_IS.3 │ │ │ │ ├── CURLOPT_PINNEDPUBLICKEY.3 │ │ │ │ ├── CURLOPT_PIPEWAIT.3 │ │ │ │ ├── CURLOPT_PORT.3 │ │ │ │ ├── CURLOPT_POST.3 │ │ │ │ ├── CURLOPT_POSTFIELDS.3 │ │ │ │ ├── CURLOPT_POSTFIELDSIZE.3 │ │ │ │ ├── CURLOPT_POSTFIELDSIZE_LARGE.3 │ │ │ │ ├── CURLOPT_POSTQUOTE.3 │ │ │ │ ├── CURLOPT_POSTREDIR.3 │ │ │ │ ├── CURLOPT_PREQUOTE.3 │ │ │ │ ├── CURLOPT_PREREQDATA.3 │ │ │ │ ├── CURLOPT_PREREQFUNCTION.3 │ │ │ │ ├── CURLOPT_PRE_PROXY.3 │ │ │ │ ├── CURLOPT_PRIVATE.3 │ │ │ │ ├── CURLOPT_PROGRESSDATA.3 │ │ │ │ ├── CURLOPT_PROGRESSFUNCTION.3 │ │ │ │ ├── CURLOPT_PROTOCOLS.3 │ │ │ │ ├── CURLOPT_PROTOCOLS_STR.3 │ │ │ │ ├── CURLOPT_PROXY.3 │ │ │ │ ├── CURLOPT_PROXYAUTH.3 │ │ │ │ ├── CURLOPT_PROXYHEADER.3 │ │ │ │ ├── CURLOPT_PROXYPASSWORD.3 │ │ │ │ ├── CURLOPT_PROXYPORT.3 │ │ │ │ ├── CURLOPT_PROXYTYPE.3 │ │ │ │ ├── CURLOPT_PROXYUSERNAME.3 │ │ │ │ ├── CURLOPT_PROXYUSERPWD.3 │ │ │ │ ├── CURLOPT_PROXY_CAINFO.3 │ │ │ │ ├── CURLOPT_PROXY_CAINFO_BLOB.3 │ │ │ │ ├── CURLOPT_PROXY_CAPATH.3 │ │ │ │ ├── CURLOPT_PROXY_CRLFILE.3 │ │ │ │ ├── CURLOPT_PROXY_ISSUERCERT.3 │ │ │ │ ├── CURLOPT_PROXY_ISSUERCERT_BLOB.3 │ │ │ │ ├── CURLOPT_PROXY_KEYPASSWD.3 │ │ │ │ ├── CURLOPT_PROXY_PINNEDPUBLICKEY.3 │ │ │ │ ├── CURLOPT_PROXY_SERVICE_NAME.3 │ │ │ │ ├── CURLOPT_PROXY_SSLCERT.3 │ │ │ │ ├── CURLOPT_PROXY_SSLCERTTYPE.3 │ │ │ │ ├── CURLOPT_PROXY_SSLCERT_BLOB.3 │ │ │ │ ├── CURLOPT_PROXY_SSLKEY.3 │ │ │ │ ├── CURLOPT_PROXY_SSLKEYTYPE.3 │ │ │ │ ├── CURLOPT_PROXY_SSLKEY_BLOB.3 │ │ │ │ ├── CURLOPT_PROXY_SSLVERSION.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_CIPHER_LIST.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_OPTIONS.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_VERIFYHOST.3 │ │ │ │ ├── CURLOPT_PROXY_SSL_VERIFYPEER.3 │ │ │ │ ├── CURLOPT_PROXY_TLS13_CIPHERS.3 │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_PASSWORD.3 │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_TYPE.3 │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_USERNAME.3 │ │ │ │ ├── CURLOPT_PROXY_TRANSFER_MODE.3 │ │ │ │ ├── CURLOPT_PUT.3 │ │ │ │ ├── CURLOPT_QUICK_EXIT.3 │ │ │ │ ├── CURLOPT_QUOTE.3 │ │ │ │ ├── CURLOPT_RANDOM_FILE.3 │ │ │ │ ├── CURLOPT_RANGE.3 │ │ │ │ ├── CURLOPT_READDATA.3 │ │ │ │ ├── CURLOPT_READFUNCTION.3 │ │ │ │ ├── CURLOPT_REDIR_PROTOCOLS.3 │ │ │ │ ├── CURLOPT_REDIR_PROTOCOLS_STR.3 │ │ │ │ ├── CURLOPT_REFERER.3 │ │ │ │ ├── CURLOPT_REQUEST_TARGET.3 │ │ │ │ ├── CURLOPT_RESOLVE.3 │ │ │ │ ├── CURLOPT_RESOLVER_START_DATA.3 │ │ │ │ ├── CURLOPT_RESOLVER_START_FUNCTION.3 │ │ │ │ ├── CURLOPT_RESUME_FROM.3 │ │ │ │ ├── CURLOPT_RESUME_FROM_LARGE.3 │ │ │ │ ├── CURLOPT_RTSP_CLIENT_CSEQ.3 │ │ │ │ ├── CURLOPT_RTSP_REQUEST.3 │ │ │ │ ├── CURLOPT_RTSP_SERVER_CSEQ.3 │ │ │ │ ├── CURLOPT_RTSP_SESSION_ID.3 │ │ │ │ ├── CURLOPT_RTSP_STREAM_URI.3 │ │ │ │ ├── CURLOPT_RTSP_TRANSPORT.3 │ │ │ │ ├── CURLOPT_SASL_AUTHZID.3 │ │ │ │ ├── CURLOPT_SASL_IR.3 │ │ │ │ ├── CURLOPT_SEEKDATA.3 │ │ │ │ ├── CURLOPT_SEEKFUNCTION.3 │ │ │ │ ├── CURLOPT_SERVER_RESPONSE_TIMEOUT.3 │ │ │ │ ├── CURLOPT_SERVICE_NAME.3 │ │ │ │ ├── CURLOPT_SHARE.3 │ │ │ │ ├── CURLOPT_SOCKOPTDATA.3 │ │ │ │ ├── CURLOPT_SOCKOPTFUNCTION.3 │ │ │ │ ├── CURLOPT_SOCKS5_AUTH.3 │ │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_NEC.3 │ │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_SERVICE.3 │ │ │ │ ├── CURLOPT_SSH_AUTH_TYPES.3 │ │ │ │ ├── CURLOPT_SSH_COMPRESSION.3 │ │ │ │ ├── CURLOPT_SSH_HOSTKEYDATA.3 │ │ │ │ ├── CURLOPT_SSH_HOSTKEYFUNCTION.3 │ │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 │ │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256.3 │ │ │ │ ├── CURLOPT_SSH_KEYDATA.3 │ │ │ │ ├── CURLOPT_SSH_KEYFUNCTION.3 │ │ │ │ ├── CURLOPT_SSH_KNOWNHOSTS.3 │ │ │ │ ├── CURLOPT_SSH_PRIVATE_KEYFILE.3 │ │ │ │ ├── CURLOPT_SSH_PUBLIC_KEYFILE.3 │ │ │ │ ├── CURLOPT_SSLCERT.3 │ │ │ │ ├── CURLOPT_SSLCERTTYPE.3 │ │ │ │ ├── CURLOPT_SSLCERT_BLOB.3 │ │ │ │ ├── CURLOPT_SSLENGINE.3 │ │ │ │ ├── CURLOPT_SSLENGINE_DEFAULT.3 │ │ │ │ ├── CURLOPT_SSLKEY.3 │ │ │ │ ├── CURLOPT_SSLKEYTYPE.3 │ │ │ │ ├── CURLOPT_SSLKEY_BLOB.3 │ │ │ │ ├── CURLOPT_SSLVERSION.3 │ │ │ │ ├── CURLOPT_SSL_CIPHER_LIST.3 │ │ │ │ ├── CURLOPT_SSL_CTX_DATA.3 │ │ │ │ ├── CURLOPT_SSL_CTX_FUNCTION.3 │ │ │ │ ├── CURLOPT_SSL_EC_CURVES.3 │ │ │ │ ├── CURLOPT_SSL_ENABLE_ALPN.3 │ │ │ │ ├── CURLOPT_SSL_ENABLE_NPN.3 │ │ │ │ ├── CURLOPT_SSL_FALSESTART.3 │ │ │ │ ├── CURLOPT_SSL_OPTIONS.3 │ │ │ │ ├── CURLOPT_SSL_SESSIONID_CACHE.3 │ │ │ │ ├── CURLOPT_SSL_VERIFYHOST.3 │ │ │ │ ├── CURLOPT_SSL_VERIFYPEER.3 │ │ │ │ ├── CURLOPT_SSL_VERIFYSTATUS.3 │ │ │ │ ├── CURLOPT_STDERR.3 │ │ │ │ ├── CURLOPT_STREAM_DEPENDS.3 │ │ │ │ ├── CURLOPT_STREAM_DEPENDS_E.3 │ │ │ │ ├── CURLOPT_STREAM_WEIGHT.3 │ │ │ │ ├── CURLOPT_SUPPRESS_CONNECT_HEADERS.3 │ │ │ │ ├── CURLOPT_TCP_FASTOPEN.3 │ │ │ │ ├── CURLOPT_TCP_KEEPALIVE.3 │ │ │ │ ├── CURLOPT_TCP_KEEPIDLE.3 │ │ │ │ ├── CURLOPT_TCP_KEEPINTVL.3 │ │ │ │ ├── CURLOPT_TCP_NODELAY.3 │ │ │ │ ├── CURLOPT_TELNETOPTIONS.3 │ │ │ │ ├── CURLOPT_TFTP_BLKSIZE.3 │ │ │ │ ├── CURLOPT_TFTP_NO_OPTIONS.3 │ │ │ │ ├── CURLOPT_TIMECONDITION.3 │ │ │ │ ├── CURLOPT_TIMEOUT.3 │ │ │ │ ├── CURLOPT_TIMEOUT_MS.3 │ │ │ │ ├── CURLOPT_TIMEVALUE.3 │ │ │ │ ├── CURLOPT_TIMEVALUE_LARGE.3 │ │ │ │ ├── CURLOPT_TLS13_CIPHERS.3 │ │ │ │ ├── CURLOPT_TLSAUTH_PASSWORD.3 │ │ │ │ ├── CURLOPT_TLSAUTH_TYPE.3 │ │ │ │ ├── CURLOPT_TLSAUTH_USERNAME.3 │ │ │ │ ├── CURLOPT_TRAILERDATA.3 │ │ │ │ ├── CURLOPT_TRAILERFUNCTION.3 │ │ │ │ ├── CURLOPT_TRANSFERTEXT.3 │ │ │ │ ├── CURLOPT_TRANSFER_ENCODING.3 │ │ │ │ ├── CURLOPT_UNIX_SOCKET_PATH.3 │ │ │ │ ├── CURLOPT_UNRESTRICTED_AUTH.3 │ │ │ │ ├── CURLOPT_UPKEEP_INTERVAL_MS.3 │ │ │ │ ├── CURLOPT_UPLOAD.3 │ │ │ │ ├── CURLOPT_UPLOAD_BUFFERSIZE.3 │ │ │ │ ├── CURLOPT_URL.3 │ │ │ │ ├── CURLOPT_USERAGENT.3 │ │ │ │ ├── CURLOPT_USERNAME.3 │ │ │ │ ├── CURLOPT_USERPWD.3 │ │ │ │ ├── CURLOPT_USE_SSL.3 │ │ │ │ ├── CURLOPT_VERBOSE.3 │ │ │ │ ├── CURLOPT_WILDCARDMATCH.3 │ │ │ │ ├── CURLOPT_WRITEDATA.3 │ │ │ │ ├── CURLOPT_WRITEFUNCTION.3 │ │ │ │ ├── CURLOPT_WS_OPTIONS.3 │ │ │ │ ├── CURLOPT_XFERINFODATA.3 │ │ │ │ ├── CURLOPT_XFERINFOFUNCTION.3 │ │ │ │ ├── CURLOPT_XOAUTH2_BEARER.3 │ │ │ │ ├── CURLSHOPT_LOCKFUNC.3 │ │ │ │ ├── CURLSHOPT_SHARE.3 │ │ │ │ ├── CURLSHOPT_UNLOCKFUNC.3 │ │ │ │ ├── CURLSHOPT_UNSHARE.3 │ │ │ │ ├── CURLSHOPT_USERDATA.3 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── Makefile.inc │ │ │ ├── symbols-in-versions │ │ │ └── symbols.pl │ │ ├── mk-ca-bundle.1 │ │ └── options-in-versions │ ├── include │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ └── curl │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── header.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── options.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ ├── urlapi.h │ │ │ └── websockets.h │ ├── install-sh │ ├── lib │ │ ├── .checksrc │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── curl_gethostname.Po │ │ │ ├── curl_multibyte.Po │ │ │ ├── dynbuf.Po │ │ │ ├── fake_ntlm-base64.Po │ │ │ ├── fake_ntlm-curl_multibyte.Po │ │ │ ├── fake_ntlm-dynbuf.Po │ │ │ ├── fake_ntlm-memdebug.Po │ │ │ ├── fake_ntlm-mprintf.Po │ │ │ ├── fake_ntlm-nonblock.Po │ │ │ ├── fake_ntlm-strcase.Po │ │ │ ├── fake_ntlm-strdup.Po │ │ │ ├── fake_ntlm-strtoofft.Po │ │ │ ├── fake_ntlm-timediff.Po │ │ │ ├── fake_ntlm-warnless.Po │ │ │ ├── getpart-base64.Po │ │ │ ├── getpart-curl_multibyte.Po │ │ │ ├── getpart-dynbuf.Po │ │ │ ├── getpart-memdebug.Po │ │ │ ├── getpart-mprintf.Po │ │ │ ├── getpart-nonblock.Po │ │ │ ├── getpart-strcase.Po │ │ │ ├── getpart-strdup.Po │ │ │ ├── getpart-strtoofft.Po │ │ │ ├── getpart-timediff.Po │ │ │ ├── getpart-warnless.Po │ │ │ ├── lib1502-timediff.Po │ │ │ ├── lib1502-warnless.Po │ │ │ ├── lib1503-timediff.Po │ │ │ ├── lib1503-warnless.Po │ │ │ ├── lib1504-timediff.Po │ │ │ ├── lib1504-warnless.Po │ │ │ ├── lib1505-timediff.Po │ │ │ ├── lib1505-warnless.Po │ │ │ ├── lib1521-timediff.Po │ │ │ ├── lib1539-timediff.Po │ │ │ ├── lib1539-warnless.Po │ │ │ ├── lib1543-timediff.Po │ │ │ ├── lib1596-timediff.Po │ │ │ ├── lib1596-warnless.Po │ │ │ ├── lib1917-timediff.Po │ │ │ ├── lib1917-warnless.Po │ │ │ ├── lib1946-timediff.Po │ │ │ ├── lib526-timediff.Po │ │ │ ├── lib526-warnless.Po │ │ │ ├── lib527-timediff.Po │ │ │ ├── lib527-warnless.Po │ │ │ ├── lib529-curl_multibyte.Po │ │ │ ├── lib529-timediff.Po │ │ │ ├── lib529-warnless.Po │ │ │ ├── lib532-timediff.Po │ │ │ ├── lib532-warnless.Po │ │ │ ├── lib545-timediff.Po │ │ │ ├── lib548-timediff.Po │ │ │ ├── lib565-timediff.Po │ │ │ ├── lib584-timediff.Po │ │ │ ├── lib585-curl_multibyte.Po │ │ │ ├── lib585-timediff.Po │ │ │ ├── lib587-timediff.Po │ │ │ ├── lib645-timediff.Po │ │ │ ├── lib670-timediff.Po │ │ │ ├── lib670-warnless.Po │ │ │ ├── lib671-timediff.Po │ │ │ ├── lib671-warnless.Po │ │ │ ├── lib672-timediff.Po │ │ │ ├── lib672-warnless.Po │ │ │ ├── libcurl_la-altsvc.Plo │ │ │ ├── libcurl_la-amigaos.Plo │ │ │ ├── libcurl_la-asyn-ares.Plo │ │ │ ├── libcurl_la-asyn-thread.Plo │ │ │ ├── libcurl_la-base64.Plo │ │ │ ├── libcurl_la-bufq.Plo │ │ │ ├── libcurl_la-bufref.Plo │ │ │ ├── libcurl_la-c-hyper.Plo │ │ │ ├── libcurl_la-cf-h1-proxy.Plo │ │ │ ├── libcurl_la-cf-h2-proxy.Plo │ │ │ ├── libcurl_la-cf-haproxy.Plo │ │ │ ├── libcurl_la-cf-https-connect.Plo │ │ │ ├── libcurl_la-cf-socket.Plo │ │ │ ├── libcurl_la-cfilters.Plo │ │ │ ├── libcurl_la-conncache.Plo │ │ │ ├── libcurl_la-connect.Plo │ │ │ ├── libcurl_la-content_encoding.Plo │ │ │ ├── libcurl_la-cookie.Plo │ │ │ ├── libcurl_la-curl_addrinfo.Plo │ │ │ ├── libcurl_la-curl_des.Plo │ │ │ ├── libcurl_la-curl_endian.Plo │ │ │ ├── libcurl_la-curl_fnmatch.Plo │ │ │ ├── libcurl_la-curl_get_line.Plo │ │ │ ├── libcurl_la-curl_gethostname.Plo │ │ │ ├── libcurl_la-curl_gssapi.Plo │ │ │ ├── libcurl_la-curl_log.Plo │ │ │ ├── libcurl_la-curl_memrchr.Plo │ │ │ ├── libcurl_la-curl_multibyte.Plo │ │ │ ├── libcurl_la-curl_ntlm_core.Plo │ │ │ ├── libcurl_la-curl_ntlm_wb.Plo │ │ │ ├── libcurl_la-curl_path.Plo │ │ │ ├── libcurl_la-curl_range.Plo │ │ │ ├── libcurl_la-curl_rtmp.Plo │ │ │ ├── libcurl_la-curl_sasl.Plo │ │ │ ├── libcurl_la-curl_sspi.Plo │ │ │ ├── libcurl_la-curl_threads.Plo │ │ │ ├── libcurl_la-dict.Plo │ │ │ ├── libcurl_la-doh.Plo │ │ │ ├── libcurl_la-dynbuf.Plo │ │ │ ├── libcurl_la-dynhds.Plo │ │ │ ├── libcurl_la-easy.Plo │ │ │ ├── libcurl_la-easygetopt.Plo │ │ │ ├── libcurl_la-easyoptions.Plo │ │ │ ├── libcurl_la-escape.Plo │ │ │ ├── libcurl_la-file.Plo │ │ │ ├── libcurl_la-fileinfo.Plo │ │ │ ├── libcurl_la-fopen.Plo │ │ │ ├── libcurl_la-formdata.Plo │ │ │ ├── libcurl_la-ftp.Plo │ │ │ ├── libcurl_la-ftplistparser.Plo │ │ │ ├── libcurl_la-getenv.Plo │ │ │ ├── libcurl_la-getinfo.Plo │ │ │ ├── libcurl_la-gopher.Plo │ │ │ ├── libcurl_la-hash.Plo │ │ │ ├── libcurl_la-headers.Plo │ │ │ ├── libcurl_la-hmac.Plo │ │ │ ├── libcurl_la-hostasyn.Plo │ │ │ ├── libcurl_la-hostip.Plo │ │ │ ├── libcurl_la-hostip4.Plo │ │ │ ├── libcurl_la-hostip6.Plo │ │ │ ├── libcurl_la-hostsyn.Plo │ │ │ ├── libcurl_la-hsts.Plo │ │ │ ├── libcurl_la-http.Plo │ │ │ ├── libcurl_la-http1.Plo │ │ │ ├── libcurl_la-http2.Plo │ │ │ ├── libcurl_la-http_aws_sigv4.Plo │ │ │ ├── libcurl_la-http_chunks.Plo │ │ │ ├── libcurl_la-http_digest.Plo │ │ │ ├── libcurl_la-http_negotiate.Plo │ │ │ ├── libcurl_la-http_ntlm.Plo │ │ │ ├── libcurl_la-http_proxy.Plo │ │ │ ├── libcurl_la-idn.Plo │ │ │ ├── libcurl_la-if2ip.Plo │ │ │ ├── libcurl_la-imap.Plo │ │ │ ├── libcurl_la-inet_ntop.Plo │ │ │ ├── libcurl_la-inet_pton.Plo │ │ │ ├── libcurl_la-krb5.Plo │ │ │ ├── libcurl_la-ldap.Plo │ │ │ ├── libcurl_la-llist.Plo │ │ │ ├── libcurl_la-md4.Plo │ │ │ ├── libcurl_la-md5.Plo │ │ │ ├── libcurl_la-memdebug.Plo │ │ │ ├── libcurl_la-mime.Plo │ │ │ ├── libcurl_la-mprintf.Plo │ │ │ ├── libcurl_la-mqtt.Plo │ │ │ ├── libcurl_la-multi.Plo │ │ │ ├── libcurl_la-netrc.Plo │ │ │ ├── libcurl_la-nonblock.Plo │ │ │ ├── libcurl_la-noproxy.Plo │ │ │ ├── libcurl_la-openldap.Plo │ │ │ ├── libcurl_la-parsedate.Plo │ │ │ ├── libcurl_la-pingpong.Plo │ │ │ ├── libcurl_la-pop3.Plo │ │ │ ├── libcurl_la-progress.Plo │ │ │ ├── libcurl_la-psl.Plo │ │ │ ├── libcurl_la-rand.Plo │ │ │ ├── libcurl_la-rename.Plo │ │ │ ├── libcurl_la-rtsp.Plo │ │ │ ├── libcurl_la-select.Plo │ │ │ ├── libcurl_la-sendf.Plo │ │ │ ├── libcurl_la-setopt.Plo │ │ │ ├── libcurl_la-sha256.Plo │ │ │ ├── libcurl_la-share.Plo │ │ │ ├── libcurl_la-slist.Plo │ │ │ ├── libcurl_la-smb.Plo │ │ │ ├── libcurl_la-smtp.Plo │ │ │ ├── libcurl_la-socketpair.Plo │ │ │ ├── libcurl_la-socks.Plo │ │ │ ├── libcurl_la-socks_gssapi.Plo │ │ │ ├── libcurl_la-socks_sspi.Plo │ │ │ ├── libcurl_la-speedcheck.Plo │ │ │ ├── libcurl_la-splay.Plo │ │ │ ├── libcurl_la-strcase.Plo │ │ │ ├── libcurl_la-strdup.Plo │ │ │ ├── libcurl_la-strerror.Plo │ │ │ ├── libcurl_la-strtok.Plo │ │ │ ├── libcurl_la-strtoofft.Plo │ │ │ ├── libcurl_la-system_win32.Plo │ │ │ ├── libcurl_la-telnet.Plo │ │ │ ├── libcurl_la-tftp.Plo │ │ │ ├── libcurl_la-timediff.Plo │ │ │ ├── libcurl_la-timeval.Plo │ │ │ ├── libcurl_la-transfer.Plo │ │ │ ├── libcurl_la-url.Plo │ │ │ ├── libcurl_la-urlapi.Plo │ │ │ ├── libcurl_la-version.Plo │ │ │ ├── libcurl_la-version_win32.Plo │ │ │ ├── libcurl_la-warnless.Plo │ │ │ ├── libcurl_la-ws.Plo │ │ │ ├── libcurltool_la-curl_multibyte.Plo │ │ │ ├── libcurltool_la-dynbuf.Plo │ │ │ ├── libcurltool_la-nonblock.Plo │ │ │ ├── libcurltool_la-strtoofft.Plo │ │ │ ├── libcurltool_la-timediff.Plo │ │ │ ├── libcurltool_la-version_win32.Plo │ │ │ ├── libcurltool_la-warnless.Plo │ │ │ ├── libcurlu_la-altsvc.Plo │ │ │ ├── libcurlu_la-amigaos.Plo │ │ │ ├── libcurlu_la-asyn-ares.Plo │ │ │ ├── libcurlu_la-asyn-thread.Plo │ │ │ ├── libcurlu_la-base64.Plo │ │ │ ├── libcurlu_la-bufq.Plo │ │ │ ├── libcurlu_la-bufref.Plo │ │ │ ├── libcurlu_la-c-hyper.Plo │ │ │ ├── libcurlu_la-cf-h1-proxy.Plo │ │ │ ├── libcurlu_la-cf-h2-proxy.Plo │ │ │ ├── libcurlu_la-cf-haproxy.Plo │ │ │ ├── libcurlu_la-cf-https-connect.Plo │ │ │ ├── libcurlu_la-cf-socket.Plo │ │ │ ├── libcurlu_la-cfilters.Plo │ │ │ ├── libcurlu_la-conncache.Plo │ │ │ ├── libcurlu_la-connect.Plo │ │ │ ├── libcurlu_la-content_encoding.Plo │ │ │ ├── libcurlu_la-cookie.Plo │ │ │ ├── libcurlu_la-curl_addrinfo.Plo │ │ │ ├── libcurlu_la-curl_des.Plo │ │ │ ├── libcurlu_la-curl_endian.Plo │ │ │ ├── libcurlu_la-curl_fnmatch.Plo │ │ │ ├── libcurlu_la-curl_get_line.Plo │ │ │ ├── libcurlu_la-curl_gethostname.Plo │ │ │ ├── libcurlu_la-curl_gssapi.Plo │ │ │ ├── libcurlu_la-curl_log.Plo │ │ │ ├── libcurlu_la-curl_memrchr.Plo │ │ │ ├── libcurlu_la-curl_multibyte.Plo │ │ │ ├── libcurlu_la-curl_ntlm_core.Plo │ │ │ ├── libcurlu_la-curl_ntlm_wb.Plo │ │ │ ├── libcurlu_la-curl_path.Plo │ │ │ ├── libcurlu_la-curl_range.Plo │ │ │ ├── libcurlu_la-curl_rtmp.Plo │ │ │ ├── libcurlu_la-curl_sasl.Plo │ │ │ ├── libcurlu_la-curl_sspi.Plo │ │ │ ├── libcurlu_la-curl_threads.Plo │ │ │ ├── libcurlu_la-dict.Plo │ │ │ ├── libcurlu_la-doh.Plo │ │ │ ├── libcurlu_la-dynbuf.Plo │ │ │ ├── libcurlu_la-dynhds.Plo │ │ │ ├── libcurlu_la-easy.Plo │ │ │ ├── libcurlu_la-easygetopt.Plo │ │ │ ├── libcurlu_la-easyoptions.Plo │ │ │ ├── libcurlu_la-escape.Plo │ │ │ ├── libcurlu_la-file.Plo │ │ │ ├── libcurlu_la-fileinfo.Plo │ │ │ ├── libcurlu_la-fopen.Plo │ │ │ ├── libcurlu_la-formdata.Plo │ │ │ ├── libcurlu_la-ftp.Plo │ │ │ ├── libcurlu_la-ftplistparser.Plo │ │ │ ├── libcurlu_la-getenv.Plo │ │ │ ├── libcurlu_la-getinfo.Plo │ │ │ ├── libcurlu_la-gopher.Plo │ │ │ ├── libcurlu_la-hash.Plo │ │ │ ├── libcurlu_la-headers.Plo │ │ │ ├── libcurlu_la-hmac.Plo │ │ │ ├── libcurlu_la-hostasyn.Plo │ │ │ ├── libcurlu_la-hostip.Plo │ │ │ ├── libcurlu_la-hostip4.Plo │ │ │ ├── libcurlu_la-hostip6.Plo │ │ │ ├── libcurlu_la-hostsyn.Plo │ │ │ ├── libcurlu_la-hsts.Plo │ │ │ ├── libcurlu_la-http.Plo │ │ │ ├── libcurlu_la-http1.Plo │ │ │ ├── libcurlu_la-http2.Plo │ │ │ ├── libcurlu_la-http_aws_sigv4.Plo │ │ │ ├── libcurlu_la-http_chunks.Plo │ │ │ ├── libcurlu_la-http_digest.Plo │ │ │ ├── libcurlu_la-http_negotiate.Plo │ │ │ ├── libcurlu_la-http_ntlm.Plo │ │ │ ├── libcurlu_la-http_proxy.Plo │ │ │ ├── libcurlu_la-idn.Plo │ │ │ ├── libcurlu_la-if2ip.Plo │ │ │ ├── libcurlu_la-imap.Plo │ │ │ ├── libcurlu_la-inet_ntop.Plo │ │ │ ├── libcurlu_la-inet_pton.Plo │ │ │ ├── libcurlu_la-krb5.Plo │ │ │ ├── libcurlu_la-ldap.Plo │ │ │ ├── libcurlu_la-llist.Plo │ │ │ ├── libcurlu_la-md4.Plo │ │ │ ├── libcurlu_la-md5.Plo │ │ │ ├── libcurlu_la-memdebug.Plo │ │ │ ├── libcurlu_la-mime.Plo │ │ │ ├── libcurlu_la-mprintf.Plo │ │ │ ├── libcurlu_la-mqtt.Plo │ │ │ ├── libcurlu_la-multi.Plo │ │ │ ├── libcurlu_la-netrc.Plo │ │ │ ├── libcurlu_la-nonblock.Plo │ │ │ ├── libcurlu_la-noproxy.Plo │ │ │ ├── libcurlu_la-openldap.Plo │ │ │ ├── libcurlu_la-parsedate.Plo │ │ │ ├── libcurlu_la-pingpong.Plo │ │ │ ├── libcurlu_la-pop3.Plo │ │ │ ├── libcurlu_la-progress.Plo │ │ │ ├── libcurlu_la-psl.Plo │ │ │ ├── libcurlu_la-rand.Plo │ │ │ ├── libcurlu_la-rename.Plo │ │ │ ├── libcurlu_la-rtsp.Plo │ │ │ ├── libcurlu_la-select.Plo │ │ │ ├── libcurlu_la-sendf.Plo │ │ │ ├── libcurlu_la-setopt.Plo │ │ │ ├── libcurlu_la-sha256.Plo │ │ │ ├── libcurlu_la-share.Plo │ │ │ ├── libcurlu_la-slist.Plo │ │ │ ├── libcurlu_la-smb.Plo │ │ │ ├── libcurlu_la-smtp.Plo │ │ │ ├── libcurlu_la-socketpair.Plo │ │ │ ├── libcurlu_la-socks.Plo │ │ │ ├── libcurlu_la-socks_gssapi.Plo │ │ │ ├── libcurlu_la-socks_sspi.Plo │ │ │ ├── libcurlu_la-speedcheck.Plo │ │ │ ├── libcurlu_la-splay.Plo │ │ │ ├── libcurlu_la-strcase.Plo │ │ │ ├── libcurlu_la-strdup.Plo │ │ │ ├── libcurlu_la-strerror.Plo │ │ │ ├── libcurlu_la-strtok.Plo │ │ │ ├── libcurlu_la-strtoofft.Plo │ │ │ ├── libcurlu_la-system_win32.Plo │ │ │ ├── libcurlu_la-telnet.Plo │ │ │ ├── libcurlu_la-tftp.Plo │ │ │ ├── libcurlu_la-timediff.Plo │ │ │ ├── libcurlu_la-timeval.Plo │ │ │ ├── libcurlu_la-transfer.Plo │ │ │ ├── libcurlu_la-url.Plo │ │ │ ├── libcurlu_la-urlapi.Plo │ │ │ ├── libcurlu_la-version.Plo │ │ │ ├── libcurlu_la-version_win32.Plo │ │ │ ├── libcurlu_la-warnless.Plo │ │ │ ├── libcurlu_la-ws.Plo │ │ │ ├── mqttd-base64.Po │ │ │ ├── mqttd-curl_multibyte.Po │ │ │ ├── mqttd-dynbuf.Po │ │ │ ├── mqttd-inet_pton.Po │ │ │ ├── mqttd-memdebug.Po │ │ │ ├── mqttd-mprintf.Po │ │ │ ├── mqttd-nonblock.Po │ │ │ ├── mqttd-strcase.Po │ │ │ ├── mqttd-strdup.Po │ │ │ ├── mqttd-strtoofft.Po │ │ │ ├── mqttd-timediff.Po │ │ │ ├── mqttd-warnless.Po │ │ │ ├── nonblock.Po │ │ │ ├── resolve-base64.Po │ │ │ ├── resolve-curl_multibyte.Po │ │ │ ├── resolve-dynbuf.Po │ │ │ ├── resolve-memdebug.Po │ │ │ ├── resolve-mprintf.Po │ │ │ ├── resolve-nonblock.Po │ │ │ ├── resolve-strcase.Po │ │ │ ├── resolve-strdup.Po │ │ │ ├── resolve-strtoofft.Po │ │ │ ├── resolve-timediff.Po │ │ │ ├── resolve-warnless.Po │ │ │ ├── rtspd-base64.Po │ │ │ ├── rtspd-curl_multibyte.Po │ │ │ ├── rtspd-dynbuf.Po │ │ │ ├── rtspd-memdebug.Po │ │ │ ├── rtspd-mprintf.Po │ │ │ ├── rtspd-nonblock.Po │ │ │ ├── rtspd-strcase.Po │ │ │ ├── rtspd-strdup.Po │ │ │ ├── rtspd-strtoofft.Po │ │ │ ├── rtspd-timediff.Po │ │ │ ├── rtspd-warnless.Po │ │ │ ├── sockfilt-base64.Po │ │ │ ├── sockfilt-curl_multibyte.Po │ │ │ ├── sockfilt-dynbuf.Po │ │ │ ├── sockfilt-inet_pton.Po │ │ │ ├── sockfilt-memdebug.Po │ │ │ ├── sockfilt-mprintf.Po │ │ │ ├── sockfilt-nonblock.Po │ │ │ ├── sockfilt-strcase.Po │ │ │ ├── sockfilt-strdup.Po │ │ │ ├── sockfilt-strtoofft.Po │ │ │ ├── sockfilt-timediff.Po │ │ │ ├── sockfilt-warnless.Po │ │ │ ├── socksd-base64.Po │ │ │ ├── socksd-curl_multibyte.Po │ │ │ ├── socksd-dynbuf.Po │ │ │ ├── socksd-inet_pton.Po │ │ │ ├── socksd-memdebug.Po │ │ │ ├── socksd-mprintf.Po │ │ │ ├── socksd-nonblock.Po │ │ │ ├── socksd-strcase.Po │ │ │ ├── socksd-strdup.Po │ │ │ ├── socksd-strtoofft.Po │ │ │ ├── socksd-timediff.Po │ │ │ ├── socksd-warnless.Po │ │ │ ├── strtoofft.Po │ │ │ ├── sws-base64.Po │ │ │ ├── sws-curl_multibyte.Po │ │ │ ├── sws-dynbuf.Po │ │ │ ├── sws-inet_pton.Po │ │ │ ├── sws-memdebug.Po │ │ │ ├── sws-mprintf.Po │ │ │ ├── sws-nonblock.Po │ │ │ ├── sws-strcase.Po │ │ │ ├── sws-strdup.Po │ │ │ ├── sws-strtoofft.Po │ │ │ ├── sws-timediff.Po │ │ │ ├── sws-warnless.Po │ │ │ ├── tftpd-base64.Po │ │ │ ├── tftpd-curl_multibyte.Po │ │ │ ├── tftpd-dynbuf.Po │ │ │ ├── tftpd-memdebug.Po │ │ │ ├── tftpd-mprintf.Po │ │ │ ├── tftpd-nonblock.Po │ │ │ ├── tftpd-strcase.Po │ │ │ ├── tftpd-strdup.Po │ │ │ ├── tftpd-strtoofft.Po │ │ │ ├── tftpd-timediff.Po │ │ │ ├── tftpd-warnless.Po │ │ │ ├── timediff.Po │ │ │ ├── version_win32.Po │ │ │ └── warnless.Po │ │ ├── .dirstamp │ │ ├── .libs │ │ │ ├── libcurl-symbols.expsym │ │ │ └── libcurl.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.mk │ │ ├── Makefile.soname │ │ ├── altsvc.c │ │ ├── altsvc.h │ │ ├── amigaos.c │ │ ├── amigaos.h │ │ ├── arpa_telnet.h │ │ ├── asyn-ares.c │ │ ├── asyn-thread.c │ │ ├── asyn.h │ │ ├── base64.c │ │ ├── bufq.c │ │ ├── bufq.h │ │ ├── bufref.c │ │ ├── bufref.h │ │ ├── c-hyper.c │ │ ├── c-hyper.h │ │ ├── cf-h1-proxy.c │ │ ├── cf-h1-proxy.h │ │ ├── cf-h2-proxy.c │ │ ├── cf-h2-proxy.h │ │ ├── cf-haproxy.c │ │ ├── cf-haproxy.h │ │ ├── cf-https-connect.c │ │ ├── cf-https-connect.h │ │ ├── cf-socket.c │ │ ├── cf-socket.h │ │ ├── cfilters.c │ │ ├── cfilters.h │ │ ├── config-amigaos.h │ │ ├── config-dos.h │ │ ├── config-mac.h │ │ ├── config-os400.h │ │ ├── config-plan9.h │ │ ├── config-riscos.h │ │ ├── config-win32.h │ │ ├── config-win32ce.h │ │ ├── conncache.c │ │ ├── conncache.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── content_encoding.c │ │ ├── content_encoding.h │ │ ├── cookie.c │ │ ├── cookie.h │ │ ├── curl_addrinfo.c │ │ ├── curl_addrinfo.h │ │ ├── curl_base64.h │ │ ├── curl_config.h │ │ ├── curl_config.h.cmake │ │ ├── curl_config.h.in │ │ ├── curl_ctype.h │ │ ├── curl_des.c │ │ ├── curl_des.h │ │ ├── curl_endian.c │ │ ├── curl_endian.h │ │ ├── curl_fnmatch.c │ │ ├── curl_fnmatch.h │ │ ├── curl_get_line.c │ │ ├── curl_get_line.h │ │ ├── curl_gethostname.c │ │ ├── curl_gethostname.h │ │ ├── curl_gssapi.c │ │ ├── curl_gssapi.h │ │ ├── curl_hmac.h │ │ ├── curl_krb5.h │ │ ├── curl_ldap.h │ │ ├── curl_log.c │ │ ├── curl_log.h │ │ ├── curl_md4.h │ │ ├── curl_md5.h │ │ ├── curl_memory.h │ │ ├── curl_memrchr.c │ │ ├── curl_memrchr.h │ │ ├── curl_multibyte.c │ │ ├── curl_multibyte.h │ │ ├── curl_ntlm_core.c │ │ ├── curl_ntlm_core.h │ │ ├── curl_ntlm_wb.c │ │ ├── curl_ntlm_wb.h │ │ ├── curl_path.c │ │ ├── curl_path.h │ │ ├── curl_printf.h │ │ ├── curl_range.c │ │ ├── curl_range.h │ │ ├── curl_rtmp.c │ │ ├── curl_rtmp.h │ │ ├── curl_sasl.c │ │ ├── curl_sasl.h │ │ ├── curl_setup.h │ │ ├── curl_setup_once.h │ │ ├── curl_sha256.h │ │ ├── curl_sspi.c │ │ ├── curl_sspi.h │ │ ├── curl_threads.c │ │ ├── curl_threads.h │ │ ├── curlx.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── doh.c │ │ ├── doh.h │ │ ├── dynbuf.c │ │ ├── dynbuf.h │ │ ├── dynhds.c │ │ ├── dynhds.h │ │ ├── easy.c │ │ ├── easy_lock.h │ │ ├── easygetopt.c │ │ ├── easyif.h │ │ ├── easyoptions.c │ │ ├── easyoptions.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── file.c │ │ ├── file.h │ │ ├── fileinfo.c │ │ ├── fileinfo.h │ │ ├── fopen.c │ │ ├── fopen.h │ │ ├── formdata.c │ │ ├── formdata.h │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── ftplistparser.c │ │ ├── ftplistparser.h │ │ ├── functypes.h │ │ ├── getenv.c │ │ ├── getinfo.c │ │ ├── getinfo.h │ │ ├── gopher.c │ │ ├── gopher.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── headers.c │ │ ├── headers.h │ │ ├── hmac.c │ │ ├── hostasyn.c │ │ ├── hostip.c │ │ ├── hostip.h │ │ ├── hostip4.c │ │ ├── hostip6.c │ │ ├── hostsyn.c │ │ ├── hsts.c │ │ ├── hsts.h │ │ ├── http.c │ │ ├── http.h │ │ ├── http1.c │ │ ├── http1.h │ │ ├── http2.c │ │ ├── http2.h │ │ ├── http_aws_sigv4.c │ │ ├── http_aws_sigv4.h │ │ ├── http_chunks.c │ │ ├── http_chunks.h │ │ ├── http_digest.c │ │ ├── http_digest.h │ │ ├── http_negotiate.c │ │ ├── http_negotiate.h │ │ ├── http_ntlm.c │ │ ├── http_ntlm.h │ │ ├── http_proxy.c │ │ ├── http_proxy.h │ │ ├── idn.c │ │ ├── idn.h │ │ ├── if2ip.c │ │ ├── if2ip.h │ │ ├── imap.c │ │ ├── imap.h │ │ ├── inet_ntop.c │ │ ├── inet_ntop.h │ │ ├── inet_pton.c │ │ ├── inet_pton.h │ │ ├── krb5.c │ │ ├── ldap.c │ │ ├── libcurl.plist │ │ ├── libcurl.plist.in │ │ ├── libcurl.rc │ │ ├── libcurl.vers │ │ ├── libcurl.vers.in │ │ ├── llist.c │ │ ├── llist.h │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mprintf.c │ │ ├── mqtt.c │ │ ├── mqtt.h │ │ ├── multi.c │ │ ├── multihandle.h │ │ ├── multiif.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── nonblock.c │ │ ├── nonblock.h │ │ ├── noproxy.c │ │ ├── noproxy.h │ │ ├── openldap.c │ │ ├── parsedate.c │ │ ├── parsedate.h │ │ ├── pingpong.c │ │ ├── pingpong.h │ │ ├── pop3.c │ │ ├── pop3.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── psl.c │ │ ├── psl.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── rename.c │ │ ├── rename.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── select.c │ │ ├── select.h │ │ ├── sendf.c │ │ ├── sendf.h │ │ ├── setopt.c │ │ ├── setopt.h │ │ ├── setup-os400.h │ │ ├── setup-vms.h │ │ ├── setup-win32.h │ │ ├── sha256.c │ │ ├── share.c │ │ ├── share.h │ │ ├── sigpipe.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── smb.c │ │ ├── smb.h │ │ ├── smtp.c │ │ ├── smtp.h │ │ ├── sockaddr.h │ │ ├── socketpair.c │ │ ├── socketpair.h │ │ ├── socks.c │ │ ├── socks.h │ │ ├── socks_gssapi.c │ │ ├── socks_sspi.c │ │ ├── speedcheck.c │ │ ├── speedcheck.h │ │ ├── splay.c │ │ ├── splay.h │ │ ├── stamp-h1 │ │ ├── strcase.c │ │ ├── strcase.h │ │ ├── strdup.c │ │ ├── strdup.h │ │ ├── strerror.c │ │ ├── strerror.h │ │ ├── strtok.c │ │ ├── strtok.h │ │ ├── strtoofft.c │ │ ├── strtoofft.h │ │ ├── system_win32.c │ │ ├── system_win32.h │ │ ├── telnet.c │ │ ├── telnet.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timediff.c │ │ ├── timediff.h │ │ ├── timeval.c │ │ ├── timeval.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── url.c │ │ ├── url.h │ │ ├── urlapi-int.h │ │ ├── urlapi.c │ │ ├── urldata.h │ │ ├── vauth │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── libcurl_la-cleartext.Plo │ │ │ │ ├── libcurl_la-cram.Plo │ │ │ │ ├── libcurl_la-digest.Plo │ │ │ │ ├── libcurl_la-digest_sspi.Plo │ │ │ │ ├── libcurl_la-gsasl.Plo │ │ │ │ ├── libcurl_la-krb5_gssapi.Plo │ │ │ │ ├── libcurl_la-krb5_sspi.Plo │ │ │ │ ├── libcurl_la-ntlm.Plo │ │ │ │ ├── libcurl_la-ntlm_sspi.Plo │ │ │ │ ├── libcurl_la-oauth2.Plo │ │ │ │ ├── libcurl_la-spnego_gssapi.Plo │ │ │ │ ├── libcurl_la-spnego_sspi.Plo │ │ │ │ ├── libcurl_la-vauth.Plo │ │ │ │ ├── libcurlu_la-cleartext.Plo │ │ │ │ ├── libcurlu_la-cram.Plo │ │ │ │ ├── libcurlu_la-digest.Plo │ │ │ │ ├── libcurlu_la-digest_sspi.Plo │ │ │ │ ├── libcurlu_la-gsasl.Plo │ │ │ │ ├── libcurlu_la-krb5_gssapi.Plo │ │ │ │ ├── libcurlu_la-krb5_sspi.Plo │ │ │ │ ├── libcurlu_la-ntlm.Plo │ │ │ │ ├── libcurlu_la-ntlm_sspi.Plo │ │ │ │ ├── libcurlu_la-oauth2.Plo │ │ │ │ ├── libcurlu_la-spnego_gssapi.Plo │ │ │ │ ├── libcurlu_la-spnego_sspi.Plo │ │ │ │ └── libcurlu_la-vauth.Plo │ │ │ ├── .dirstamp │ │ │ ├── cleartext.c │ │ │ ├── cram.c │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_sspi.c │ │ │ ├── gsasl.c │ │ │ ├── krb5_gssapi.c │ │ │ ├── krb5_sspi.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── ntlm_sspi.c │ │ │ ├── oauth2.c │ │ │ ├── spnego_gssapi.c │ │ │ ├── spnego_sspi.c │ │ │ ├── vauth.c │ │ │ └── vauth.h │ │ ├── version.c │ │ ├── version_win32.c │ │ ├── version_win32.h │ │ ├── vquic │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── libcurl_la-curl_msh3.Plo │ │ │ │ ├── libcurl_la-curl_ngtcp2.Plo │ │ │ │ ├── libcurl_la-curl_quiche.Plo │ │ │ │ ├── libcurl_la-vquic.Plo │ │ │ │ ├── libcurlu_la-curl_msh3.Plo │ │ │ │ ├── libcurlu_la-curl_ngtcp2.Plo │ │ │ │ ├── libcurlu_la-curl_quiche.Plo │ │ │ │ └── libcurlu_la-vquic.Plo │ │ │ ├── .dirstamp │ │ │ ├── curl_msh3.c │ │ │ ├── curl_msh3.h │ │ │ ├── curl_ngtcp2.c │ │ │ ├── curl_ngtcp2.h │ │ │ ├── curl_quiche.c │ │ │ ├── curl_quiche.h │ │ │ ├── vquic.c │ │ │ ├── vquic.h │ │ │ └── vquic_int.h │ │ ├── vssh │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── libcurl_la-libssh.Plo │ │ │ │ ├── libcurl_la-libssh2.Plo │ │ │ │ ├── libcurl_la-wolfssh.Plo │ │ │ │ ├── libcurlu_la-libssh.Plo │ │ │ │ ├── libcurlu_la-libssh2.Plo │ │ │ │ └── libcurlu_la-wolfssh.Plo │ │ │ ├── .dirstamp │ │ │ ├── libssh.c │ │ │ ├── libssh2.c │ │ │ ├── ssh.h │ │ │ └── wolfssh.c │ │ ├── vtls │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── libcurl_la-bearssl.Plo │ │ │ │ ├── libcurl_la-gskit.Plo │ │ │ │ ├── libcurl_la-gtls.Plo │ │ │ │ ├── libcurl_la-hostcheck.Plo │ │ │ │ ├── libcurl_la-keylog.Plo │ │ │ │ ├── libcurl_la-mbedtls.Plo │ │ │ │ ├── libcurl_la-mbedtls_threadlock.Plo │ │ │ │ ├── libcurl_la-nss.Plo │ │ │ │ ├── libcurl_la-openssl.Plo │ │ │ │ ├── libcurl_la-rustls.Plo │ │ │ │ ├── libcurl_la-schannel.Plo │ │ │ │ ├── libcurl_la-schannel_verify.Plo │ │ │ │ ├── libcurl_la-sectransp.Plo │ │ │ │ ├── libcurl_la-vtls.Plo │ │ │ │ ├── libcurl_la-wolfssl.Plo │ │ │ │ ├── libcurl_la-x509asn1.Plo │ │ │ │ ├── libcurlu_la-bearssl.Plo │ │ │ │ ├── libcurlu_la-gskit.Plo │ │ │ │ ├── libcurlu_la-gtls.Plo │ │ │ │ ├── libcurlu_la-hostcheck.Plo │ │ │ │ ├── libcurlu_la-keylog.Plo │ │ │ │ ├── libcurlu_la-mbedtls.Plo │ │ │ │ ├── libcurlu_la-mbedtls_threadlock.Plo │ │ │ │ ├── libcurlu_la-nss.Plo │ │ │ │ ├── libcurlu_la-openssl.Plo │ │ │ │ ├── libcurlu_la-rustls.Plo │ │ │ │ ├── libcurlu_la-schannel.Plo │ │ │ │ ├── libcurlu_la-schannel_verify.Plo │ │ │ │ ├── libcurlu_la-sectransp.Plo │ │ │ │ ├── libcurlu_la-vtls.Plo │ │ │ │ ├── libcurlu_la-wolfssl.Plo │ │ │ │ └── libcurlu_la-x509asn1.Plo │ │ │ ├── .dirstamp │ │ │ ├── bearssl.c │ │ │ ├── bearssl.h │ │ │ ├── gskit.c │ │ │ ├── gskit.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── hostcheck.c │ │ │ ├── hostcheck.h │ │ │ ├── keylog.c │ │ │ ├── keylog.h │ │ │ ├── mbedtls.c │ │ │ ├── mbedtls.h │ │ │ ├── mbedtls_threadlock.c │ │ │ ├── mbedtls_threadlock.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── openssl.c │ │ │ ├── openssl.h │ │ │ ├── rustls.c │ │ │ ├── rustls.h │ │ │ ├── schannel.c │ │ │ ├── schannel.h │ │ │ ├── schannel_verify.c │ │ │ ├── sectransp.c │ │ │ ├── sectransp.h │ │ │ ├── vtls.c │ │ │ ├── vtls.h │ │ │ ├── vtls_int.h │ │ │ ├── wolfssl.c │ │ │ ├── wolfssl.h │ │ │ ├── x509asn1.c │ │ │ └── x509asn1.h │ │ ├── warnless.c │ │ ├── warnless.h │ │ ├── ws.c │ │ └── ws.h │ ├── libcurl.pc │ ├── libcurl.pc.in │ ├── libtool │ ├── ltmain.sh │ ├── m4 │ │ ├── curl-amissl.m4 │ │ ├── curl-bearssl.m4 │ │ ├── curl-compilers.m4 │ │ ├── curl-confopts.m4 │ │ ├── curl-functions.m4 │ │ ├── curl-gnutls.m4 │ │ ├── curl-mbedtls.m4 │ │ ├── curl-nss.m4 │ │ ├── curl-openssl.m4 │ │ ├── curl-override.m4 │ │ ├── curl-reentrant.m4 │ │ ├── curl-rustls.m4 │ │ ├── curl-schannel.m4 │ │ ├── curl-sectransp.m4 │ │ ├── curl-sysconfig.m4 │ │ ├── curl-wolfssl.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── xc-am-iface.m4 │ │ ├── xc-cc-check.m4 │ │ ├── xc-lt-iface.m4 │ │ ├── xc-translit.m4 │ │ ├── xc-val-flgs.m4 │ │ ├── zz40-xc-ovr.m4 │ │ ├── zz50-xc-ovr.m4 │ │ └── zz60-xc-ovr.m4 │ ├── maketgz │ ├── missing │ ├── packages │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── OS400 │ │ │ ├── README.OS400 │ │ │ ├── ccsidcurl.c │ │ │ ├── ccsidcurl.h │ │ │ ├── chkstrings.c │ │ │ ├── curl.inc.in │ │ │ ├── initscript.sh │ │ │ ├── make-include.sh │ │ │ ├── make-lib.sh │ │ │ ├── make-src.sh │ │ │ ├── make-tests.sh │ │ │ ├── makefile.sh │ │ │ ├── os400sys.c │ │ │ ├── os400sys.h │ │ │ └── rpg-examples │ │ │ │ ├── HEADERAPI │ │ │ │ ├── HTTPPOST │ │ │ │ ├── INMEMORY │ │ │ │ ├── SIMPLE1 │ │ │ │ ├── SIMPLE2 │ │ │ │ └── SMTPSRCMBR │ │ ├── README.md │ │ └── vms │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── backup_gnv_curl_src.com │ │ │ ├── build_curl-config_script.com │ │ │ ├── build_gnv_curl.com │ │ │ ├── build_gnv_curl_pcsi_desc.com │ │ │ ├── build_gnv_curl_pcsi_text.com │ │ │ ├── build_gnv_curl_release_notes.com │ │ │ ├── build_libcurl_pc.com │ │ │ ├── build_vms.com │ │ │ ├── clean_gnv_curl.com │ │ │ ├── compare_curl_source.com │ │ │ ├── config_h.com │ │ │ ├── curl_crtl_init.c │ │ │ ├── curl_gnv_build_steps.txt │ │ │ ├── curl_release_note_start.txt │ │ │ ├── curl_startup.com │ │ │ ├── curlmsg.h │ │ │ ├── curlmsg.msg │ │ │ ├── curlmsg.sdl │ │ │ ├── curlmsg_vms.h │ │ │ ├── generate_config_vms_h_curl.com │ │ │ ├── generate_vax_transfer.com │ │ │ ├── gnv_conftest.c_first │ │ │ ├── gnv_curl_configure.sh │ │ │ ├── gnv_libcurl_symbols.opt │ │ │ ├── gnv_link_curl.com │ │ │ ├── macro32_exactcase.patch │ │ │ ├── make_gnv_curl_install.sh │ │ │ ├── make_pcsi_curl_kit_name.com │ │ │ ├── pcsi_gnv_curl_file_list.txt │ │ │ ├── pcsi_product_gnv_curl.com │ │ │ ├── readme │ │ │ ├── report_openssl_version.c │ │ │ ├── setup_gnv_curl_build.com │ │ │ ├── stage_curl_install.com │ │ │ └── vms_eco_level.h │ ├── plan9 │ │ ├── README │ │ ├── include │ │ │ └── mkfile │ │ ├── lib │ │ │ ├── mkfile │ │ │ └── mkfile.inc │ │ ├── mkfile │ │ ├── mkfile.proto │ │ └── src │ │ │ ├── mkfile │ │ │ └── mkfile.inc │ ├── projects │ │ ├── README.md │ │ ├── Windows │ │ │ ├── VC10 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC11 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC12 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC14.10 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ ├── VC14.30 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ │ ├── libcurl.sln │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── curl.sln │ │ │ │ │ ├── curl.vcxproj │ │ │ │ │ └── curl.vcxproj.filters │ │ │ └── VC14 │ │ │ │ ├── curl-all.sln │ │ │ │ ├── lib │ │ │ │ ├── libcurl.sln │ │ │ │ ├── libcurl.vcxproj │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ └── src │ │ │ │ ├── curl.sln │ │ │ │ ├── curl.vcxproj │ │ │ │ └── curl.vcxproj.filters │ │ ├── build-openssl.bat │ │ ├── build-wolfssl.bat │ │ ├── checksrc.bat │ │ ├── generate.bat │ │ ├── wolfssl_options.h │ │ └── wolfssl_override.props │ ├── scripts │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── checksrc.pl │ │ ├── completion.pl │ │ ├── coverage.sh │ │ ├── firefox-db2pem.sh │ │ ├── mk-ca-bundle.pl │ │ └── updatemanpages.pl │ ├── src │ │ ├── .deps │ │ │ ├── libcurltool_la-slist_wc.Plo │ │ │ ├── libcurltool_la-tool_binmode.Plo │ │ │ ├── libcurltool_la-tool_bname.Plo │ │ │ ├── libcurltool_la-tool_cb_dbg.Plo │ │ │ ├── libcurltool_la-tool_cb_hdr.Plo │ │ │ ├── libcurltool_la-tool_cb_prg.Plo │ │ │ ├── libcurltool_la-tool_cb_rea.Plo │ │ │ ├── libcurltool_la-tool_cb_see.Plo │ │ │ ├── libcurltool_la-tool_cb_wrt.Plo │ │ │ ├── libcurltool_la-tool_cfgable.Plo │ │ │ ├── libcurltool_la-tool_dirhie.Plo │ │ │ ├── libcurltool_la-tool_doswin.Plo │ │ │ ├── libcurltool_la-tool_easysrc.Plo │ │ │ ├── libcurltool_la-tool_filetime.Plo │ │ │ ├── libcurltool_la-tool_findfile.Plo │ │ │ ├── libcurltool_la-tool_formparse.Plo │ │ │ ├── libcurltool_la-tool_getparam.Plo │ │ │ ├── libcurltool_la-tool_getpass.Plo │ │ │ ├── libcurltool_la-tool_help.Plo │ │ │ ├── libcurltool_la-tool_helpers.Plo │ │ │ ├── libcurltool_la-tool_hugehelp.Plo │ │ │ ├── libcurltool_la-tool_libinfo.Plo │ │ │ ├── libcurltool_la-tool_listhelp.Plo │ │ │ ├── libcurltool_la-tool_main.Plo │ │ │ ├── libcurltool_la-tool_msgs.Plo │ │ │ ├── libcurltool_la-tool_operate.Plo │ │ │ ├── libcurltool_la-tool_operhlp.Plo │ │ │ ├── libcurltool_la-tool_paramhlp.Plo │ │ │ ├── libcurltool_la-tool_parsecfg.Plo │ │ │ ├── libcurltool_la-tool_progress.Plo │ │ │ ├── libcurltool_la-tool_setopt.Plo │ │ │ ├── libcurltool_la-tool_sleep.Plo │ │ │ ├── libcurltool_la-tool_stderr.Plo │ │ │ ├── libcurltool_la-tool_strdup.Plo │ │ │ ├── libcurltool_la-tool_urlglob.Plo │ │ │ ├── libcurltool_la-tool_util.Plo │ │ │ ├── libcurltool_la-tool_vms.Plo │ │ │ ├── libcurltool_la-tool_writeout.Plo │ │ │ ├── libcurltool_la-tool_writeout_json.Plo │ │ │ ├── libcurltool_la-tool_xattr.Plo │ │ │ ├── slist_wc.Po │ │ │ ├── tool_binmode.Po │ │ │ ├── tool_bname.Po │ │ │ ├── tool_cb_dbg.Po │ │ │ ├── tool_cb_hdr.Po │ │ │ ├── tool_cb_prg.Po │ │ │ ├── tool_cb_rea.Po │ │ │ ├── tool_cb_see.Po │ │ │ ├── tool_cb_wrt.Po │ │ │ ├── tool_cfgable.Po │ │ │ ├── tool_dirhie.Po │ │ │ ├── tool_doswin.Po │ │ │ ├── tool_easysrc.Po │ │ │ ├── tool_filetime.Po │ │ │ ├── tool_findfile.Po │ │ │ ├── tool_formparse.Po │ │ │ ├── tool_getparam.Po │ │ │ ├── tool_getpass.Po │ │ │ ├── tool_help.Po │ │ │ ├── tool_helpers.Po │ │ │ ├── tool_hugehelp.Po │ │ │ ├── tool_libinfo.Po │ │ │ ├── tool_listhelp.Po │ │ │ ├── tool_main.Po │ │ │ ├── tool_msgs.Po │ │ │ ├── tool_operate.Po │ │ │ ├── tool_operhlp.Po │ │ │ ├── tool_paramhlp.Po │ │ │ ├── tool_parsecfg.Po │ │ │ ├── tool_progress.Po │ │ │ ├── tool_setopt.Po │ │ │ ├── tool_sleep.Po │ │ │ ├── tool_stderr.Po │ │ │ ├── tool_strdup.Po │ │ │ ├── tool_urlglob.Po │ │ │ ├── tool_util.Po │ │ │ ├── tool_vms.Po │ │ │ ├── tool_writeout.Po │ │ │ ├── tool_writeout_json.Po │ │ │ └── tool_xattr.Po │ │ ├── .libs │ │ │ └── curl │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.mk │ │ ├── curl │ │ ├── curl.rc │ │ ├── mkhelp.pl │ │ ├── slist_wc.c │ │ ├── slist_wc.h │ │ ├── tool_binmode.c │ │ ├── tool_binmode.h │ │ ├── tool_bname.c │ │ ├── tool_bname.h │ │ ├── tool_cb_dbg.c │ │ ├── tool_cb_dbg.h │ │ ├── tool_cb_hdr.c │ │ ├── tool_cb_hdr.h │ │ ├── tool_cb_prg.c │ │ ├── tool_cb_prg.h │ │ ├── tool_cb_rea.c │ │ ├── tool_cb_rea.h │ │ ├── tool_cb_see.c │ │ ├── tool_cb_see.h │ │ ├── tool_cb_wrt.c │ │ ├── tool_cb_wrt.h │ │ ├── tool_cfgable.c │ │ ├── tool_cfgable.h │ │ ├── tool_dirhie.c │ │ ├── tool_dirhie.h │ │ ├── tool_doswin.c │ │ ├── tool_doswin.h │ │ ├── tool_easysrc.c │ │ ├── tool_easysrc.h │ │ ├── tool_filetime.c │ │ ├── tool_filetime.h │ │ ├── tool_findfile.c │ │ ├── tool_findfile.h │ │ ├── tool_formparse.c │ │ ├── tool_formparse.h │ │ ├── tool_getparam.c │ │ ├── tool_getparam.h │ │ ├── tool_getpass.c │ │ ├── tool_getpass.h │ │ ├── tool_help.c │ │ ├── tool_help.h │ │ ├── tool_helpers.c │ │ ├── tool_helpers.h │ │ ├── tool_hugehelp.c │ │ ├── tool_hugehelp.h │ │ ├── tool_libinfo.c │ │ ├── tool_libinfo.h │ │ ├── tool_listhelp.c │ │ ├── tool_main.c │ │ ├── tool_main.h │ │ ├── tool_msgs.c │ │ ├── tool_msgs.h │ │ ├── tool_operate.c │ │ ├── tool_operate.h │ │ ├── tool_operhlp.c │ │ ├── tool_operhlp.h │ │ ├── tool_paramhlp.c │ │ ├── tool_paramhlp.h │ │ ├── tool_parsecfg.c │ │ ├── tool_parsecfg.h │ │ ├── tool_progress.c │ │ ├── tool_progress.h │ │ ├── tool_sdecls.h │ │ ├── tool_setopt.c │ │ ├── tool_setopt.h │ │ ├── tool_setup.h │ │ ├── tool_sleep.c │ │ ├── tool_sleep.h │ │ ├── tool_stderr.c │ │ ├── tool_stderr.h │ │ ├── tool_strdup.c │ │ ├── tool_strdup.h │ │ ├── tool_urlglob.c │ │ ├── tool_urlglob.h │ │ ├── tool_util.c │ │ ├── tool_util.h │ │ ├── tool_version.h │ │ ├── tool_vms.c │ │ ├── tool_vms.h │ │ ├── tool_writeout.c │ │ ├── tool_writeout.h │ │ ├── tool_writeout_json.c │ │ ├── tool_writeout_json.h │ │ ├── tool_xattr.c │ │ └── tool_xattr.h │ ├── test-driver │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── FILEFORMAT.md │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── appveyor.pm │ │ ├── azure.pm │ │ ├── badsymbols.pl │ │ ├── certs │ │ │ ├── EdelCurlRoot-ca.cacert │ │ │ ├── EdelCurlRoot-ca.cnf │ │ │ ├── EdelCurlRoot-ca.crt │ │ │ ├── EdelCurlRoot-ca.csr │ │ │ ├── EdelCurlRoot-ca.der │ │ │ ├── EdelCurlRoot-ca.key │ │ │ ├── EdelCurlRoot-ca.prm │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Server-localhost-firstSAN-sv.crl │ │ │ ├── Server-localhost-firstSAN-sv.crt │ │ │ ├── Server-localhost-firstSAN-sv.csr │ │ │ ├── Server-localhost-firstSAN-sv.der │ │ │ ├── Server-localhost-firstSAN-sv.dhp │ │ │ ├── Server-localhost-firstSAN-sv.key │ │ │ ├── Server-localhost-firstSAN-sv.pem │ │ │ ├── Server-localhost-firstSAN-sv.prm │ │ │ ├── Server-localhost-firstSAN-sv.pub.der │ │ │ ├── Server-localhost-firstSAN-sv.pub.pem │ │ │ ├── Server-localhost-lastSAN-sv.crl │ │ │ ├── Server-localhost-lastSAN-sv.crt │ │ │ ├── Server-localhost-lastSAN-sv.csr │ │ │ ├── Server-localhost-lastSAN-sv.der │ │ │ ├── Server-localhost-lastSAN-sv.dhp │ │ │ ├── Server-localhost-lastSAN-sv.key │ │ │ ├── Server-localhost-lastSAN-sv.pem │ │ │ ├── Server-localhost-lastSAN-sv.prm │ │ │ ├── Server-localhost-lastSAN-sv.pub.der │ │ │ ├── Server-localhost-lastSAN-sv.pub.pem │ │ │ ├── Server-localhost-sv.crl │ │ │ ├── Server-localhost-sv.crt │ │ │ ├── Server-localhost-sv.csr │ │ │ ├── Server-localhost-sv.der │ │ │ ├── Server-localhost-sv.dhp │ │ │ ├── Server-localhost-sv.key │ │ │ ├── Server-localhost-sv.pem │ │ │ ├── Server-localhost-sv.prm │ │ │ ├── Server-localhost-sv.pub.der │ │ │ ├── Server-localhost-sv.pub.pem │ │ │ ├── Server-localhost.nn-sv.crl │ │ │ ├── Server-localhost.nn-sv.crt │ │ │ ├── Server-localhost.nn-sv.csr │ │ │ ├── Server-localhost.nn-sv.der │ │ │ ├── Server-localhost.nn-sv.dhp │ │ │ ├── Server-localhost.nn-sv.key │ │ │ ├── Server-localhost.nn-sv.pem │ │ │ ├── Server-localhost.nn-sv.prm │ │ │ ├── Server-localhost.nn-sv.pub.der │ │ │ ├── Server-localhost.nn-sv.pub.pem │ │ │ ├── Server-localhost0h-sv.crl │ │ │ ├── Server-localhost0h-sv.crt │ │ │ ├── Server-localhost0h-sv.csr │ │ │ ├── Server-localhost0h-sv.der │ │ │ ├── Server-localhost0h-sv.dhp │ │ │ ├── Server-localhost0h-sv.key │ │ │ ├── Server-localhost0h-sv.pem │ │ │ ├── Server-localhost0h-sv.prm │ │ │ ├── Server-localhost0h-sv.pub.der │ │ │ ├── Server-localhost0h-sv.pub.pem │ │ │ ├── scripts │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── genroot.sh │ │ │ │ └── genserv.sh │ │ │ ├── srp-verifier-conf │ │ │ ├── srp-verifier-db │ │ │ ├── stunnel-sv.crl │ │ │ ├── stunnel-sv.crt │ │ │ ├── stunnel-sv.csr │ │ │ ├── stunnel-sv.der │ │ │ ├── stunnel-sv.dhp │ │ │ ├── stunnel-sv.key │ │ │ ├── stunnel-sv.pem │ │ │ ├── stunnel-sv.prm │ │ │ └── stunnel-sv.pub.pem │ │ ├── check-deprecated.pl │ │ ├── config │ │ ├── config.in │ │ ├── configurehelp.pm │ │ ├── data │ │ │ ├── CMakeLists.txt │ │ │ ├── DISABLED │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── test1 │ │ │ ├── test10 │ │ │ ├── test100 │ │ │ ├── test1000 │ │ │ ├── test1001 │ │ │ ├── test1002 │ │ │ ├── test1003 │ │ │ ├── test1004 │ │ │ ├── test1005 │ │ │ ├── test1006 │ │ │ ├── test1007 │ │ │ ├── test1008 │ │ │ ├── test1009 │ │ │ ├── test101 │ │ │ ├── test1010 │ │ │ ├── test1011 │ │ │ ├── test1012 │ │ │ ├── test1013 │ │ │ ├── test1014 │ │ │ ├── test1015 │ │ │ ├── test1016 │ │ │ ├── test1017 │ │ │ ├── test1018 │ │ │ ├── test1019 │ │ │ ├── test102 │ │ │ ├── test1020 │ │ │ ├── test1021 │ │ │ ├── test1022 │ │ │ ├── test1023 │ │ │ ├── test1024 │ │ │ ├── test1025 │ │ │ ├── test1026 │ │ │ ├── test1027 │ │ │ ├── test1028 │ │ │ ├── test1029 │ │ │ ├── test103 │ │ │ ├── test1030 │ │ │ ├── test1031 │ │ │ ├── test1032 │ │ │ ├── test1033 │ │ │ ├── test1034 │ │ │ ├── test1035 │ │ │ ├── test1036 │ │ │ ├── test1037 │ │ │ ├── test1038 │ │ │ ├── test1039 │ │ │ ├── test104 │ │ │ ├── test1040 │ │ │ ├── test1041 │ │ │ ├── test1042 │ │ │ ├── test1043 │ │ │ ├── test1044 │ │ │ ├── test1045 │ │ │ ├── test1046 │ │ │ ├── test1047 │ │ │ ├── test1048 │ │ │ ├── test1049 │ │ │ ├── test105 │ │ │ ├── test1050 │ │ │ ├── test1051 │ │ │ ├── test1052 │ │ │ ├── test1053 │ │ │ ├── test1054 │ │ │ ├── test1055 │ │ │ ├── test1056 │ │ │ ├── test1057 │ │ │ ├── test1058 │ │ │ ├── test1059 │ │ │ ├── test106 │ │ │ ├── test1060 │ │ │ ├── test1061 │ │ │ ├── test1062 │ │ │ ├── test1063 │ │ │ ├── test1064 │ │ │ ├── test1065 │ │ │ ├── test1066 │ │ │ ├── test1067 │ │ │ ├── test1068 │ │ │ ├── test1069 │ │ │ ├── test107 │ │ │ ├── test1070 │ │ │ ├── test1071 │ │ │ ├── test1072 │ │ │ ├── test1073 │ │ │ ├── test1074 │ │ │ ├── test1075 │ │ │ ├── test1076 │ │ │ ├── test1077 │ │ │ ├── test1078 │ │ │ ├── test1079 │ │ │ ├── test108 │ │ │ ├── test1080 │ │ │ ├── test1081 │ │ │ ├── test1082 │ │ │ ├── test1083 │ │ │ ├── test1084 │ │ │ ├── test1085 │ │ │ ├── test1086 │ │ │ ├── test1087 │ │ │ ├── test1088 │ │ │ ├── test1089 │ │ │ ├── test109 │ │ │ ├── test1090 │ │ │ ├── test1091 │ │ │ ├── test1092 │ │ │ ├── test1093 │ │ │ ├── test1094 │ │ │ ├── test1095 │ │ │ ├── test1096 │ │ │ ├── test1097 │ │ │ ├── test1098 │ │ │ ├── test1099 │ │ │ ├── test11 │ │ │ ├── test110 │ │ │ ├── test1100 │ │ │ ├── test1101 │ │ │ ├── test1102 │ │ │ ├── test1103 │ │ │ ├── test1104 │ │ │ ├── test1105 │ │ │ ├── test1106 │ │ │ ├── test1107 │ │ │ ├── test1108 │ │ │ ├── test1109 │ │ │ ├── test111 │ │ │ ├── test1110 │ │ │ ├── test1111 │ │ │ ├── test1112 │ │ │ ├── test1113 │ │ │ ├── test1114 │ │ │ ├── test1115 │ │ │ ├── test1116 │ │ │ ├── test1117 │ │ │ ├── test1118 │ │ │ ├── test1119 │ │ │ ├── test112 │ │ │ ├── test1120 │ │ │ ├── test1121 │ │ │ ├── test1122 │ │ │ ├── test1123 │ │ │ ├── test1124 │ │ │ ├── test1125 │ │ │ ├── test1126 │ │ │ ├── test1127 │ │ │ ├── test1128 │ │ │ ├── test1129 │ │ │ ├── test113 │ │ │ ├── test1130 │ │ │ ├── test1131 │ │ │ ├── test1132 │ │ │ ├── test1133 │ │ │ ├── test1134 │ │ │ ├── test1135 │ │ │ ├── test1136 │ │ │ ├── test1137 │ │ │ ├── test1138 │ │ │ ├── test1139 │ │ │ ├── test114 │ │ │ ├── test1140 │ │ │ ├── test1141 │ │ │ ├── test1142 │ │ │ ├── test1143 │ │ │ ├── test1144 │ │ │ ├── test1145 │ │ │ ├── test1146 │ │ │ ├── test1147 │ │ │ ├── test1148 │ │ │ ├── test1149 │ │ │ ├── test115 │ │ │ ├── test1150 │ │ │ ├── test1151 │ │ │ ├── test1152 │ │ │ ├── test1153 │ │ │ ├── test1154 │ │ │ ├── test1155 │ │ │ ├── test1156 │ │ │ ├── test1157 │ │ │ ├── test1158 │ │ │ ├── test1159 │ │ │ ├── test116 │ │ │ ├── test1160 │ │ │ ├── test1161 │ │ │ ├── test1162 │ │ │ ├── test1163 │ │ │ ├── test1164 │ │ │ ├── test1165 │ │ │ ├── test1166 │ │ │ ├── test1167 │ │ │ ├── test1168 │ │ │ ├── test1169 │ │ │ ├── test117 │ │ │ ├── test1170 │ │ │ ├── test1171 │ │ │ ├── test1172 │ │ │ ├── test1173 │ │ │ ├── test1174 │ │ │ ├── test1175 │ │ │ ├── test1176 │ │ │ ├── test1177 │ │ │ ├── test1178 │ │ │ ├── test1179 │ │ │ ├── test118 │ │ │ ├── test1180 │ │ │ ├── test1181 │ │ │ ├── test1182 │ │ │ ├── test1183 │ │ │ ├── test1184 │ │ │ ├── test1185 │ │ │ ├── test1186 │ │ │ ├── test1187 │ │ │ ├── test1188 │ │ │ ├── test1189 │ │ │ ├── test119 │ │ │ ├── test1190 │ │ │ ├── test1191 │ │ │ ├── test1192 │ │ │ ├── test1193 │ │ │ ├── test1194 │ │ │ ├── test1195 │ │ │ ├── test1196 │ │ │ ├── test1197 │ │ │ ├── test1198 │ │ │ ├── test1199 │ │ │ ├── test12 │ │ │ ├── test120 │ │ │ ├── test1200 │ │ │ ├── test1201 │ │ │ ├── test1202 │ │ │ ├── test1203 │ │ │ ├── test1204 │ │ │ ├── test1205 │ │ │ ├── test1206 │ │ │ ├── test1207 │ │ │ ├── test1208 │ │ │ ├── test1209 │ │ │ ├── test121 │ │ │ ├── test1210 │ │ │ ├── test1211 │ │ │ ├── test1212 │ │ │ ├── test1213 │ │ │ ├── test1214 │ │ │ ├── test1215 │ │ │ ├── test1216 │ │ │ ├── test1217 │ │ │ ├── test1218 │ │ │ ├── test1219 │ │ │ ├── test122 │ │ │ ├── test1220 │ │ │ ├── test1221 │ │ │ ├── test1222 │ │ │ ├── test1223 │ │ │ ├── test1224 │ │ │ ├── test1225 │ │ │ ├── test1226 │ │ │ ├── test1227 │ │ │ ├── test1228 │ │ │ ├── test1229 │ │ │ ├── test123 │ │ │ ├── test1230 │ │ │ ├── test1231 │ │ │ ├── test1232 │ │ │ ├── test1233 │ │ │ ├── test1234 │ │ │ ├── test1235 │ │ │ ├── test1236 │ │ │ ├── test1237 │ │ │ ├── test1238 │ │ │ ├── test1239 │ │ │ ├── test124 │ │ │ ├── test1240 │ │ │ ├── test1241 │ │ │ ├── test1242 │ │ │ ├── test1243 │ │ │ ├── test1244 │ │ │ ├── test1245 │ │ │ ├── test1246 │ │ │ ├── test1247 │ │ │ ├── test1248 │ │ │ ├── test1249 │ │ │ ├── test125 │ │ │ ├── test1250 │ │ │ ├── test1251 │ │ │ ├── test1252 │ │ │ ├── test1253 │ │ │ ├── test1254 │ │ │ ├── test1255 │ │ │ ├── test1256 │ │ │ ├── test1257 │ │ │ ├── test1258 │ │ │ ├── test1259 │ │ │ ├── test126 │ │ │ ├── test1260 │ │ │ ├── test1261 │ │ │ ├── test1262 │ │ │ ├── test1263 │ │ │ ├── test1264 │ │ │ ├── test1265 │ │ │ ├── test1266 │ │ │ ├── test1267 │ │ │ ├── test1268 │ │ │ ├── test1269 │ │ │ ├── test127 │ │ │ ├── test1270 │ │ │ ├── test1271 │ │ │ ├── test1272 │ │ │ ├── test1273 │ │ │ ├── test1274 │ │ │ ├── test1275 │ │ │ ├── test1276 │ │ │ ├── test1277 │ │ │ ├── test1278 │ │ │ ├── test128 │ │ │ ├── test1280 │ │ │ ├── test1281 │ │ │ ├── test1282 │ │ │ ├── test1283 │ │ │ ├── test1284 │ │ │ ├── test1285 │ │ │ ├── test1286 │ │ │ ├── test1287 │ │ │ ├── test1288 │ │ │ ├── test1289 │ │ │ ├── test129 │ │ │ ├── test1290 │ │ │ ├── test1291 │ │ │ ├── test1292 │ │ │ ├── test1293 │ │ │ ├── test1294 │ │ │ ├── test1295 │ │ │ ├── test1296 │ │ │ ├── test1297 │ │ │ ├── test1298 │ │ │ ├── test1299 │ │ │ ├── test13 │ │ │ ├── test130 │ │ │ ├── test1300 │ │ │ ├── test1301 │ │ │ ├── test1302 │ │ │ ├── test1303 │ │ │ ├── test1304 │ │ │ ├── test1305 │ │ │ ├── test1306 │ │ │ ├── test1307 │ │ │ ├── test1308 │ │ │ ├── test1309 │ │ │ ├── test131 │ │ │ ├── test1310 │ │ │ ├── test1311 │ │ │ ├── test1312 │ │ │ ├── test1313 │ │ │ ├── test1314 │ │ │ ├── test1315 │ │ │ ├── test1316 │ │ │ ├── test1317 │ │ │ ├── test1318 │ │ │ ├── test1319 │ │ │ ├── test132 │ │ │ ├── test1320 │ │ │ ├── test1321 │ │ │ ├── test1322 │ │ │ ├── test1323 │ │ │ ├── test1324 │ │ │ ├── test1325 │ │ │ ├── test1326 │ │ │ ├── test1327 │ │ │ ├── test1328 │ │ │ ├── test1329 │ │ │ ├── test133 │ │ │ ├── test1330 │ │ │ ├── test1331 │ │ │ ├── test1332 │ │ │ ├── test1333 │ │ │ ├── test1334 │ │ │ ├── test1335 │ │ │ ├── test1336 │ │ │ ├── test1337 │ │ │ ├── test1338 │ │ │ ├── test1339 │ │ │ ├── test134 │ │ │ ├── test1340 │ │ │ ├── test1341 │ │ │ ├── test1342 │ │ │ ├── test1343 │ │ │ ├── test1344 │ │ │ ├── test1345 │ │ │ ├── test1346 │ │ │ ├── test1347 │ │ │ ├── test1348 │ │ │ ├── test1349 │ │ │ ├── test135 │ │ │ ├── test1350 │ │ │ ├── test1351 │ │ │ ├── test1352 │ │ │ ├── test1353 │ │ │ ├── test1354 │ │ │ ├── test1355 │ │ │ ├── test1356 │ │ │ ├── test1357 │ │ │ ├── test1358 │ │ │ ├── test1359 │ │ │ ├── test136 │ │ │ ├── test1360 │ │ │ ├── test1361 │ │ │ ├── test1362 │ │ │ ├── test1363 │ │ │ ├── test1364 │ │ │ ├── test1365 │ │ │ ├── test1366 │ │ │ ├── test1367 │ │ │ ├── test1368 │ │ │ ├── test1369 │ │ │ ├── test137 │ │ │ ├── test1370 │ │ │ ├── test1371 │ │ │ ├── test1372 │ │ │ ├── test1373 │ │ │ ├── test1374 │ │ │ ├── test1375 │ │ │ ├── test1376 │ │ │ ├── test1377 │ │ │ ├── test1378 │ │ │ ├── test1379 │ │ │ ├── test138 │ │ │ ├── test1380 │ │ │ ├── test1381 │ │ │ ├── test1382 │ │ │ ├── test1383 │ │ │ ├── test1384 │ │ │ ├── test1385 │ │ │ ├── test1386 │ │ │ ├── test1387 │ │ │ ├── test1388 │ │ │ ├── test1389 │ │ │ ├── test139 │ │ │ ├── test1390 │ │ │ ├── test1391 │ │ │ ├── test1392 │ │ │ ├── test1393 │ │ │ ├── test1394 │ │ │ ├── test1395 │ │ │ ├── test1396 │ │ │ ├── test1397 │ │ │ ├── test1398 │ │ │ ├── test1399 │ │ │ ├── test14 │ │ │ ├── test140 │ │ │ ├── test1400 │ │ │ ├── test1401 │ │ │ ├── test1402 │ │ │ ├── test1403 │ │ │ ├── test1404 │ │ │ ├── test1405 │ │ │ ├── test1406 │ │ │ ├── test1407 │ │ │ ├── test1408 │ │ │ ├── test1409 │ │ │ ├── test141 │ │ │ ├── test1410 │ │ │ ├── test1411 │ │ │ ├── test1412 │ │ │ ├── test1413 │ │ │ ├── test1414 │ │ │ ├── test1415 │ │ │ ├── test1416 │ │ │ ├── test1417 │ │ │ ├── test1418 │ │ │ ├── test1419 │ │ │ ├── test142 │ │ │ ├── test1420 │ │ │ ├── test1421 │ │ │ ├── test1422 │ │ │ ├── test1423 │ │ │ ├── test1424 │ │ │ ├── test1425 │ │ │ ├── test1426 │ │ │ ├── test1427 │ │ │ ├── test1428 │ │ │ ├── test1429 │ │ │ ├── test143 │ │ │ ├── test1430 │ │ │ ├── test1431 │ │ │ ├── test1432 │ │ │ ├── test1433 │ │ │ ├── test1434 │ │ │ ├── test1435 │ │ │ ├── test1436 │ │ │ ├── test1437 │ │ │ ├── test1438 │ │ │ ├── test1439 │ │ │ ├── test144 │ │ │ ├── test1440 │ │ │ ├── test1441 │ │ │ ├── test1442 │ │ │ ├── test1443 │ │ │ ├── test1444 │ │ │ ├── test1445 │ │ │ ├── test1446 │ │ │ ├── test1447 │ │ │ ├── test1448 │ │ │ ├── test1449 │ │ │ ├── test145 │ │ │ ├── test1450 │ │ │ ├── test1451 │ │ │ ├── test1452 │ │ │ ├── test1453 │ │ │ ├── test1454 │ │ │ ├── test1455 │ │ │ ├── test1456 │ │ │ ├── test1457 │ │ │ ├── test1458 │ │ │ ├── test1459 │ │ │ ├── test146 │ │ │ ├── test1460 │ │ │ ├── test1461 │ │ │ ├── test1462 │ │ │ ├── test1463 │ │ │ ├── test1464 │ │ │ ├── test1465 │ │ │ ├── test1466 │ │ │ ├── test1467 │ │ │ ├── test1468 │ │ │ ├── test1469 │ │ │ ├── test147 │ │ │ ├── test1470 │ │ │ ├── test1471 │ │ │ ├── test1472 │ │ │ ├── test148 │ │ │ ├── test149 │ │ │ ├── test15 │ │ │ ├── test150 │ │ │ ├── test1500 │ │ │ ├── test1501 │ │ │ ├── test1502 │ │ │ ├── test1503 │ │ │ ├── test1504 │ │ │ ├── test1505 │ │ │ ├── test1506 │ │ │ ├── test1507 │ │ │ ├── test1508 │ │ │ ├── test1509 │ │ │ ├── test151 │ │ │ ├── test1510 │ │ │ ├── test1511 │ │ │ ├── test1512 │ │ │ ├── test1513 │ │ │ ├── test1514 │ │ │ ├── test1515 │ │ │ ├── test1516 │ │ │ ├── test1517 │ │ │ ├── test1518 │ │ │ ├── test1519 │ │ │ ├── test152 │ │ │ ├── test1520 │ │ │ ├── test1521 │ │ │ ├── test1522 │ │ │ ├── test1523 │ │ │ ├── test1524 │ │ │ ├── test1525 │ │ │ ├── test1526 │ │ │ ├── test1527 │ │ │ ├── test1528 │ │ │ ├── test1529 │ │ │ ├── test153 │ │ │ ├── test1530 │ │ │ ├── test1531 │ │ │ ├── test1532 │ │ │ ├── test1533 │ │ │ ├── test1534 │ │ │ ├── test1535 │ │ │ ├── test1536 │ │ │ ├── test1537 │ │ │ ├── test1538 │ │ │ ├── test1539 │ │ │ ├── test154 │ │ │ ├── test1540 │ │ │ ├── test1542 │ │ │ ├── test1543 │ │ │ ├── test155 │ │ │ ├── test1550 │ │ │ ├── test1551 │ │ │ ├── test1552 │ │ │ ├── test1553 │ │ │ ├── test1554 │ │ │ ├── test1555 │ │ │ ├── test1556 │ │ │ ├── test1557 │ │ │ ├── test1558 │ │ │ ├── test1559 │ │ │ ├── test156 │ │ │ ├── test1560 │ │ │ ├── test1561 │ │ │ ├── test1562 │ │ │ ├── test1563 │ │ │ ├── test1564 │ │ │ ├── test1565 │ │ │ ├── test1566 │ │ │ ├── test1567 │ │ │ ├── test1568 │ │ │ ├── test1569 │ │ │ ├── test157 │ │ │ ├── test1570 │ │ │ ├── test158 │ │ │ ├── test159 │ │ │ ├── test1590 │ │ │ ├── test1591 │ │ │ ├── test1592 │ │ │ ├── test1593 │ │ │ ├── test1594 │ │ │ ├── test1595 │ │ │ ├── test1596 │ │ │ ├── test1597 │ │ │ ├── test16 │ │ │ ├── test160 │ │ │ ├── test1600 │ │ │ ├── test1601 │ │ │ ├── test1602 │ │ │ ├── test1603 │ │ │ ├── test1604 │ │ │ ├── test1605 │ │ │ ├── test1606 │ │ │ ├── test1607 │ │ │ ├── test1608 │ │ │ ├── test1609 │ │ │ ├── test161 │ │ │ ├── test1610 │ │ │ ├── test1611 │ │ │ ├── test1612 │ │ │ ├── test1613 │ │ │ ├── test1614 │ │ │ ├── test162 │ │ │ ├── test1620 │ │ │ ├── test1621 │ │ │ ├── test163 │ │ │ ├── test1630 │ │ │ ├── test1631 │ │ │ ├── test1632 │ │ │ ├── test1633 │ │ │ ├── test1634 │ │ │ ├── test1635 │ │ │ ├── test164 │ │ │ ├── test165 │ │ │ ├── test1650 │ │ │ ├── test1651 │ │ │ ├── test1652 │ │ │ ├── test1653 │ │ │ ├── test1654 │ │ │ ├── test1655 │ │ │ ├── test166 │ │ │ ├── test1660 │ │ │ ├── test1661 │ │ │ ├── test1662 │ │ │ ├── test167 │ │ │ ├── test1670 │ │ │ ├── test1671 │ │ │ ├── test168 │ │ │ ├── test1680 │ │ │ ├── test1681 │ │ │ ├── test1682 │ │ │ ├── test1683 │ │ │ ├── test169 │ │ │ ├── test17 │ │ │ ├── test170 │ │ │ ├── test1700 │ │ │ ├── test1701 │ │ │ ├── test1702 │ │ │ ├── test1703 │ │ │ ├── test171 │ │ │ ├── test172 │ │ │ ├── test173 │ │ │ ├── test174 │ │ │ ├── test175 │ │ │ ├── test176 │ │ │ ├── test177 │ │ │ ├── test178 │ │ │ ├── test179 │ │ │ ├── test18 │ │ │ ├── test180 │ │ │ ├── test1800 │ │ │ ├── test1801 │ │ │ ├── test181 │ │ │ ├── test182 │ │ │ ├── test183 │ │ │ ├── test184 │ │ │ ├── test185 │ │ │ ├── test186 │ │ │ ├── test187 │ │ │ ├── test188 │ │ │ ├── test189 │ │ │ ├── test19 │ │ │ ├── test190 │ │ │ ├── test1903 │ │ │ ├── test1904 │ │ │ ├── test1905 │ │ │ ├── test1906 │ │ │ ├── test1907 │ │ │ ├── test1908 │ │ │ ├── test1909 │ │ │ ├── test191 │ │ │ ├── test1910 │ │ │ ├── test1911 │ │ │ ├── test1912 │ │ │ ├── test1913 │ │ │ ├── test1914 │ │ │ ├── test1915 │ │ │ ├── test1916 │ │ │ ├── test1917 │ │ │ ├── test1918 │ │ │ ├── test1919 │ │ │ ├── test192 │ │ │ ├── test193 │ │ │ ├── test1933 │ │ │ ├── test1934 │ │ │ ├── test1935 │ │ │ ├── test1936 │ │ │ ├── test1937 │ │ │ ├── test1938 │ │ │ ├── test1939 │ │ │ ├── test194 │ │ │ ├── test1940 │ │ │ ├── test1941 │ │ │ ├── test1942 │ │ │ ├── test1943 │ │ │ ├── test1944 │ │ │ ├── test1945 │ │ │ ├── test1946 │ │ │ ├── test1947 │ │ │ ├── test1948 │ │ │ ├── test195 │ │ │ ├── test1955 │ │ │ ├── test1956 │ │ │ ├── test1957 │ │ │ ├── test1958 │ │ │ ├── test1959 │ │ │ ├── test196 │ │ │ ├── test1960 │ │ │ ├── test197 │ │ │ ├── test1970 │ │ │ ├── test1971 │ │ │ ├── test1972 │ │ │ ├── test1973 │ │ │ ├── test1974 │ │ │ ├── test1975 │ │ │ ├── test198 │ │ │ ├── test199 │ │ │ ├── test2 │ │ │ ├── test20 │ │ │ ├── test200 │ │ │ ├── test2000 │ │ │ ├── test2001 │ │ │ ├── test2002 │ │ │ ├── test2003 │ │ │ ├── test2004 │ │ │ ├── test201 │ │ │ ├── test202 │ │ │ ├── test2023 │ │ │ ├── test2024 │ │ │ ├── test2025 │ │ │ ├── test2026 │ │ │ ├── test2027 │ │ │ ├── test2028 │ │ │ ├── test2029 │ │ │ ├── test203 │ │ │ ├── test2030 │ │ │ ├── test2031 │ │ │ ├── test2032 │ │ │ ├── test2033 │ │ │ ├── test2034 │ │ │ ├── test2035 │ │ │ ├── test2036 │ │ │ ├── test2037 │ │ │ ├── test2038 │ │ │ ├── test2039 │ │ │ ├── test204 │ │ │ ├── test2040 │ │ │ ├── test2041 │ │ │ ├── test2042 │ │ │ ├── test2043 │ │ │ ├── test2044 │ │ │ ├── test2045 │ │ │ ├── test2046 │ │ │ ├── test2047 │ │ │ ├── test2048 │ │ │ ├── test2049 │ │ │ ├── test205 │ │ │ ├── test2050 │ │ │ ├── test2051 │ │ │ ├── test2052 │ │ │ ├── test2053 │ │ │ ├── test2054 │ │ │ ├── test2055 │ │ │ ├── test2056 │ │ │ ├── test2057 │ │ │ ├── test2058 │ │ │ ├── test2059 │ │ │ ├── test206 │ │ │ ├── test2060 │ │ │ ├── test2061 │ │ │ ├── test2062 │ │ │ ├── test2063 │ │ │ ├── test2064 │ │ │ ├── test2065 │ │ │ ├── test2066 │ │ │ ├── test2067 │ │ │ ├── test2068 │ │ │ ├── test2069 │ │ │ ├── test207 │ │ │ ├── test2070 │ │ │ ├── test2071 │ │ │ ├── test2072 │ │ │ ├── test2073 │ │ │ ├── test2074 │ │ │ ├── test2075 │ │ │ ├── test2076 │ │ │ ├── test2077 │ │ │ ├── test2078 │ │ │ ├── test2079 │ │ │ ├── test208 │ │ │ ├── test2080 │ │ │ ├── test2081 │ │ │ ├── test2082 │ │ │ ├── test2083 │ │ │ ├── test2084 │ │ │ ├── test2085 │ │ │ ├── test2086 │ │ │ ├── test2087 │ │ │ ├── test209 │ │ │ ├── test21 │ │ │ ├── test210 │ │ │ ├── test2100 │ │ │ ├── test211 │ │ │ ├── test212 │ │ │ ├── test213 │ │ │ ├── test214 │ │ │ ├── test215 │ │ │ ├── test216 │ │ │ ├── test217 │ │ │ ├── test218 │ │ │ ├── test219 │ │ │ ├── test22 │ │ │ ├── test220 │ │ │ ├── test2200 │ │ │ ├── test2201 │ │ │ ├── test2202 │ │ │ ├── test2203 │ │ │ ├── test2204 │ │ │ ├── test2205 │ │ │ ├── test221 │ │ │ ├── test222 │ │ │ ├── test223 │ │ │ ├── test224 │ │ │ ├── test225 │ │ │ ├── test226 │ │ │ ├── test227 │ │ │ ├── test228 │ │ │ ├── test229 │ │ │ ├── test23 │ │ │ ├── test230 │ │ │ ├── test2300 │ │ │ ├── test2301 │ │ │ ├── test2302 │ │ │ ├── test2303 │ │ │ ├── test2304 │ │ │ ├── test2305 │ │ │ ├── test2306 │ │ │ ├── test231 │ │ │ ├── test232 │ │ │ ├── test233 │ │ │ ├── test234 │ │ │ ├── test235 │ │ │ ├── test236 │ │ │ ├── test237 │ │ │ ├── test238 │ │ │ ├── test239 │ │ │ ├── test24 │ │ │ ├── test240 │ │ │ ├── test2400 │ │ │ ├── test2401 │ │ │ ├── test2402 │ │ │ ├── test2403 │ │ │ ├── test241 │ │ │ ├── test242 │ │ │ ├── test243 │ │ │ ├── test244 │ │ │ ├── test245 │ │ │ ├── test246 │ │ │ ├── test247 │ │ │ ├── test248 │ │ │ ├── test249 │ │ │ ├── test25 │ │ │ ├── test250 │ │ │ ├── test2500 │ │ │ ├── test2501 │ │ │ ├── test2502 │ │ │ ├── test2503 │ │ │ ├── test251 │ │ │ ├── test252 │ │ │ ├── test253 │ │ │ ├── test254 │ │ │ ├── test255 │ │ │ ├── test256 │ │ │ ├── test257 │ │ │ ├── test258 │ │ │ ├── test259 │ │ │ ├── test26 │ │ │ ├── test260 │ │ │ ├── test2600 │ │ │ ├── test2601 │ │ │ ├── test2602 │ │ │ ├── test2603 │ │ │ ├── test261 │ │ │ ├── test262 │ │ │ ├── test263 │ │ │ ├── test264 │ │ │ ├── test265 │ │ │ ├── test266 │ │ │ ├── test267 │ │ │ ├── test268 │ │ │ ├── test269 │ │ │ ├── test27 │ │ │ ├── test270 │ │ │ ├── test271 │ │ │ ├── test272 │ │ │ ├── test273 │ │ │ ├── test274 │ │ │ ├── test275 │ │ │ ├── test276 │ │ │ ├── test277 │ │ │ ├── test278 │ │ │ ├── test279 │ │ │ ├── test28 │ │ │ ├── test280 │ │ │ ├── test281 │ │ │ ├── test282 │ │ │ ├── test283 │ │ │ ├── test284 │ │ │ ├── test285 │ │ │ ├── test286 │ │ │ ├── test287 │ │ │ ├── test288 │ │ │ ├── test289 │ │ │ ├── test29 │ │ │ ├── test290 │ │ │ ├── test291 │ │ │ ├── test292 │ │ │ ├── test293 │ │ │ ├── test294 │ │ │ ├── test295 │ │ │ ├── test296 │ │ │ ├── test297 │ │ │ ├── test298 │ │ │ ├── test299 │ │ │ ├── test3 │ │ │ ├── test30 │ │ │ ├── test300 │ │ │ ├── test3000 │ │ │ ├── test3001 │ │ │ ├── test3002 │ │ │ ├── test3003 │ │ │ ├── test3004 │ │ │ ├── test3005 │ │ │ ├── test3006 │ │ │ ├── test3007 │ │ │ ├── test3008 │ │ │ ├── test3009 │ │ │ ├── test301 │ │ │ ├── test3010 │ │ │ ├── test3011 │ │ │ ├── test3012 │ │ │ ├── test3013 │ │ │ ├── test3014 │ │ │ ├── test3015 │ │ │ ├── test3016 │ │ │ ├── test3017 │ │ │ ├── test3018 │ │ │ ├── test3019 │ │ │ ├── test302 │ │ │ ├── test3020 │ │ │ ├── test3021 │ │ │ ├── test3022 │ │ │ ├── test3023 │ │ │ ├── test3024 │ │ │ ├── test3025 │ │ │ ├── test3026 │ │ │ ├── test3027 │ │ │ ├── test3028 │ │ │ ├── test3029 │ │ │ ├── test303 │ │ │ ├── test3030 │ │ │ ├── test304 │ │ │ ├── test305 │ │ │ ├── test306 │ │ │ ├── test307 │ │ │ ├── test308 │ │ │ ├── test309 │ │ │ ├── test31 │ │ │ ├── test310 │ │ │ ├── test3100 │ │ │ ├── test3101 │ │ │ ├── test311 │ │ │ ├── test312 │ │ │ ├── test313 │ │ │ ├── test314 │ │ │ ├── test315 │ │ │ ├── test316 │ │ │ ├── test317 │ │ │ ├── test318 │ │ │ ├── test319 │ │ │ ├── test32 │ │ │ ├── test320 │ │ │ ├── test3200 │ │ │ ├── test321 │ │ │ ├── test322 │ │ │ ├── test323 │ │ │ ├── test324 │ │ │ ├── test325 │ │ │ ├── test326 │ │ │ ├── test327 │ │ │ ├── test328 │ │ │ ├── test329 │ │ │ ├── test33 │ │ │ ├── test330 │ │ │ ├── test331 │ │ │ ├── test332 │ │ │ ├── test333 │ │ │ ├── test334 │ │ │ ├── test335 │ │ │ ├── test336 │ │ │ ├── test337 │ │ │ ├── test338 │ │ │ ├── test339 │ │ │ ├── test34 │ │ │ ├── test340 │ │ │ ├── test341 │ │ │ ├── test342 │ │ │ ├── test343 │ │ │ ├── test344 │ │ │ ├── test345 │ │ │ ├── test346 │ │ │ ├── test347 │ │ │ ├── test348 │ │ │ ├── test349 │ │ │ ├── test35 │ │ │ ├── test350 │ │ │ ├── test351 │ │ │ ├── test352 │ │ │ ├── test353 │ │ │ ├── test354 │ │ │ ├── test355 │ │ │ ├── test356 │ │ │ ├── test357 │ │ │ ├── test358 │ │ │ ├── test359 │ │ │ ├── test36 │ │ │ ├── test360 │ │ │ ├── test361 │ │ │ ├── test362 │ │ │ ├── test363 │ │ │ ├── test364 │ │ │ ├── test365 │ │ │ ├── test366 │ │ │ ├── test367 │ │ │ ├── test368 │ │ │ ├── test369 │ │ │ ├── test37 │ │ │ ├── test370 │ │ │ ├── test371 │ │ │ ├── test372 │ │ │ ├── test373 │ │ │ ├── test374 │ │ │ ├── test375 │ │ │ ├── test376 │ │ │ ├── test378 │ │ │ ├── test379 │ │ │ ├── test38 │ │ │ ├── test380 │ │ │ ├── test381 │ │ │ ├── test383 │ │ │ ├── test384 │ │ │ ├── test385 │ │ │ ├── test386 │ │ │ ├── test387 │ │ │ ├── test388 │ │ │ ├── test389 │ │ │ ├── test39 │ │ │ ├── test390 │ │ │ ├── test391 │ │ │ ├── test392 │ │ │ ├── test393 │ │ │ ├── test394 │ │ │ ├── test395 │ │ │ ├── test396 │ │ │ ├── test397 │ │ │ ├── test398 │ │ │ ├── test399 │ │ │ ├── test4 │ │ │ ├── test40 │ │ │ ├── test400 │ │ │ ├── test401 │ │ │ ├── test402 │ │ │ ├── test403 │ │ │ ├── test404 │ │ │ ├── test405 │ │ │ ├── test406 │ │ │ ├── test407 │ │ │ ├── test408 │ │ │ ├── test409 │ │ │ ├── test41 │ │ │ ├── test410 │ │ │ ├── test411 │ │ │ ├── test412 │ │ │ ├── test413 │ │ │ ├── test414 │ │ │ ├── test415 │ │ │ ├── test416 │ │ │ ├── test417 │ │ │ ├── test418 │ │ │ ├── test419 │ │ │ ├── test42 │ │ │ ├── test420 │ │ │ ├── test421 │ │ │ ├── test422 │ │ │ ├── test423 │ │ │ ├── test424 │ │ │ ├── test425 │ │ │ ├── test426 │ │ │ ├── test43 │ │ │ ├── test430 │ │ │ ├── test431 │ │ │ ├── test432 │ │ │ ├── test433 │ │ │ ├── test434 │ │ │ ├── test435 │ │ │ ├── test436 │ │ │ ├── test44 │ │ │ ├── test440 │ │ │ ├── test441 │ │ │ ├── test442 │ │ │ ├── test443 │ │ │ ├── test444 │ │ │ ├── test445 │ │ │ ├── test446 │ │ │ ├── test45 │ │ │ ├── test46 │ │ │ ├── test47 │ │ │ ├── test48 │ │ │ ├── test49 │ │ │ ├── test490 │ │ │ ├── test491 │ │ │ ├── test492 │ │ │ ├── test493 │ │ │ ├── test494 │ │ │ ├── test495 │ │ │ ├── test496 │ │ │ ├── test5 │ │ │ ├── test50 │ │ │ ├── test500 │ │ │ ├── test501 │ │ │ ├── test502 │ │ │ ├── test503 │ │ │ ├── test504 │ │ │ ├── test505 │ │ │ ├── test506 │ │ │ ├── test507 │ │ │ ├── test508 │ │ │ ├── test509 │ │ │ ├── test51 │ │ │ ├── test510 │ │ │ ├── test511 │ │ │ ├── test512 │ │ │ ├── test513 │ │ │ ├── test514 │ │ │ ├── test515 │ │ │ ├── test516 │ │ │ ├── test517 │ │ │ ├── test518 │ │ │ ├── test519 │ │ │ ├── test52 │ │ │ ├── test520 │ │ │ ├── test521 │ │ │ ├── test522 │ │ │ ├── test523 │ │ │ ├── test524 │ │ │ ├── test525 │ │ │ ├── test526 │ │ │ ├── test527 │ │ │ ├── test528 │ │ │ ├── test529 │ │ │ ├── test53 │ │ │ ├── test530 │ │ │ ├── test531 │ │ │ ├── test532 │ │ │ ├── test533 │ │ │ ├── test534 │ │ │ ├── test535 │ │ │ ├── test537 │ │ │ ├── test538 │ │ │ ├── test539 │ │ │ ├── test54 │ │ │ ├── test540 │ │ │ ├── test541 │ │ │ ├── test542 │ │ │ ├── test543 │ │ │ ├── test544 │ │ │ ├── test545 │ │ │ ├── test546 │ │ │ ├── test547 │ │ │ ├── test548 │ │ │ ├── test549 │ │ │ ├── test55 │ │ │ ├── test550 │ │ │ ├── test551 │ │ │ ├── test552 │ │ │ ├── test553 │ │ │ ├── test554 │ │ │ ├── test555 │ │ │ ├── test556 │ │ │ ├── test557 │ │ │ ├── test558 │ │ │ ├── test559 │ │ │ ├── test56 │ │ │ ├── test560 │ │ │ ├── test561 │ │ │ ├── test562 │ │ │ ├── test563 │ │ │ ├── test564 │ │ │ ├── test565 │ │ │ ├── test566 │ │ │ ├── test567 │ │ │ ├── test568 │ │ │ ├── test569 │ │ │ ├── test57 │ │ │ ├── test570 │ │ │ ├── test571 │ │ │ ├── test572 │ │ │ ├── test573 │ │ │ ├── test574 │ │ │ ├── test575 │ │ │ ├── test576 │ │ │ ├── test577 │ │ │ ├── test578 │ │ │ ├── test579 │ │ │ ├── test58 │ │ │ ├── test580 │ │ │ ├── test581 │ │ │ ├── test582 │ │ │ ├── test583 │ │ │ ├── test584 │ │ │ ├── test585 │ │ │ ├── test586 │ │ │ ├── test587 │ │ │ ├── test588 │ │ │ ├── test589 │ │ │ ├── test59 │ │ │ ├── test590 │ │ │ ├── test591 │ │ │ ├── test592 │ │ │ ├── test593 │ │ │ ├── test594 │ │ │ ├── test595 │ │ │ ├── test596 │ │ │ ├── test597 │ │ │ ├── test598 │ │ │ ├── test599 │ │ │ ├── test6 │ │ │ ├── test60 │ │ │ ├── test600 │ │ │ ├── test601 │ │ │ ├── test602 │ │ │ ├── test603 │ │ │ ├── test604 │ │ │ ├── test605 │ │ │ ├── test606 │ │ │ ├── test607 │ │ │ ├── test608 │ │ │ ├── test609 │ │ │ ├── test61 │ │ │ ├── test610 │ │ │ ├── test611 │ │ │ ├── test612 │ │ │ ├── test613 │ │ │ ├── test614 │ │ │ ├── test615 │ │ │ ├── test616 │ │ │ ├── test617 │ │ │ ├── test618 │ │ │ ├── test619 │ │ │ ├── test62 │ │ │ ├── test620 │ │ │ ├── test621 │ │ │ ├── test622 │ │ │ ├── test623 │ │ │ ├── test624 │ │ │ ├── test625 │ │ │ ├── test626 │ │ │ ├── test627 │ │ │ ├── test628 │ │ │ ├── test629 │ │ │ ├── test63 │ │ │ ├── test630 │ │ │ ├── test631 │ │ │ ├── test632 │ │ │ ├── test633 │ │ │ ├── test634 │ │ │ ├── test635 │ │ │ ├── test636 │ │ │ ├── test637 │ │ │ ├── test638 │ │ │ ├── test639 │ │ │ ├── test64 │ │ │ ├── test640 │ │ │ ├── test641 │ │ │ ├── test642 │ │ │ ├── test643 │ │ │ ├── test644 │ │ │ ├── test645 │ │ │ ├── test646 │ │ │ ├── test647 │ │ │ ├── test648 │ │ │ ├── test649 │ │ │ ├── test65 │ │ │ ├── test650 │ │ │ ├── test651 │ │ │ ├── test652 │ │ │ ├── test653 │ │ │ ├── test654 │ │ │ ├── test655 │ │ │ ├── test656 │ │ │ ├── test658 │ │ │ ├── test659 │ │ │ ├── test66 │ │ │ ├── test660 │ │ │ ├── test661 │ │ │ ├── test662 │ │ │ ├── test663 │ │ │ ├── test664 │ │ │ ├── test665 │ │ │ ├── test666 │ │ │ ├── test667 │ │ │ ├── test668 │ │ │ ├── test669 │ │ │ ├── test67 │ │ │ ├── test670 │ │ │ ├── test671 │ │ │ ├── test672 │ │ │ ├── test673 │ │ │ ├── test674 │ │ │ ├── test675 │ │ │ ├── test676 │ │ │ ├── test677 │ │ │ ├── test678 │ │ │ ├── test679 │ │ │ ├── test68 │ │ │ ├── test680 │ │ │ ├── test681 │ │ │ ├── test682 │ │ │ ├── test683 │ │ │ ├── test684 │ │ │ ├── test685 │ │ │ ├── test686 │ │ │ ├── test69 │ │ │ ├── test7 │ │ │ ├── test70 │ │ │ ├── test700 │ │ │ ├── test701 │ │ │ ├── test702 │ │ │ ├── test703 │ │ │ ├── test704 │ │ │ ├── test705 │ │ │ ├── test706 │ │ │ ├── test707 │ │ │ ├── test708 │ │ │ ├── test709 │ │ │ ├── test71 │ │ │ ├── test710 │ │ │ ├── test711 │ │ │ ├── test712 │ │ │ ├── test713 │ │ │ ├── test714 │ │ │ ├── test715 │ │ │ ├── test716 │ │ │ ├── test717 │ │ │ ├── test718 │ │ │ ├── test719 │ │ │ ├── test72 │ │ │ ├── test720 │ │ │ ├── test721 │ │ │ ├── test73 │ │ │ ├── test74 │ │ │ ├── test75 │ │ │ ├── test76 │ │ │ ├── test77 │ │ │ ├── test78 │ │ │ ├── test79 │ │ │ ├── test8 │ │ │ ├── test80 │ │ │ ├── test800 │ │ │ ├── test801 │ │ │ ├── test802 │ │ │ ├── test803 │ │ │ ├── test804 │ │ │ ├── test805 │ │ │ ├── test806 │ │ │ ├── test807 │ │ │ ├── test808 │ │ │ ├── test809 │ │ │ ├── test81 │ │ │ ├── test810 │ │ │ ├── test811 │ │ │ ├── test812 │ │ │ ├── test813 │ │ │ ├── test814 │ │ │ ├── test815 │ │ │ ├── test816 │ │ │ ├── test817 │ │ │ ├── test818 │ │ │ ├── test819 │ │ │ ├── test82 │ │ │ ├── test820 │ │ │ ├── test821 │ │ │ ├── test822 │ │ │ ├── test823 │ │ │ ├── test824 │ │ │ ├── test825 │ │ │ ├── test826 │ │ │ ├── test827 │ │ │ ├── test828 │ │ │ ├── test829 │ │ │ ├── test83 │ │ │ ├── test830 │ │ │ ├── test831 │ │ │ ├── test832 │ │ │ ├── test833 │ │ │ ├── test834 │ │ │ ├── test835 │ │ │ ├── test836 │ │ │ ├── test837 │ │ │ ├── test838 │ │ │ ├── test839 │ │ │ ├── test84 │ │ │ ├── test840 │ │ │ ├── test841 │ │ │ ├── test842 │ │ │ ├── test843 │ │ │ ├── test844 │ │ │ ├── test845 │ │ │ ├── test846 │ │ │ ├── test847 │ │ │ ├── test848 │ │ │ ├── test849 │ │ │ ├── test85 │ │ │ ├── test850 │ │ │ ├── test851 │ │ │ ├── test852 │ │ │ ├── test853 │ │ │ ├── test854 │ │ │ ├── test855 │ │ │ ├── test856 │ │ │ ├── test857 │ │ │ ├── test858 │ │ │ ├── test859 │ │ │ ├── test86 │ │ │ ├── test860 │ │ │ ├── test861 │ │ │ ├── test862 │ │ │ ├── test863 │ │ │ ├── test864 │ │ │ ├── test865 │ │ │ ├── test866 │ │ │ ├── test867 │ │ │ ├── test868 │ │ │ ├── test869 │ │ │ ├── test87 │ │ │ ├── test870 │ │ │ ├── test871 │ │ │ ├── test872 │ │ │ ├── test873 │ │ │ ├── test874 │ │ │ ├── test875 │ │ │ ├── test876 │ │ │ ├── test877 │ │ │ ├── test878 │ │ │ ├── test879 │ │ │ ├── test88 │ │ │ ├── test880 │ │ │ ├── test881 │ │ │ ├── test882 │ │ │ ├── test883 │ │ │ ├── test884 │ │ │ ├── test885 │ │ │ ├── test886 │ │ │ ├── test887 │ │ │ ├── test888 │ │ │ ├── test889 │ │ │ ├── test89 │ │ │ ├── test890 │ │ │ ├── test891 │ │ │ ├── test892 │ │ │ ├── test893 │ │ │ ├── test894 │ │ │ ├── test895 │ │ │ ├── test896 │ │ │ ├── test897 │ │ │ ├── test898 │ │ │ ├── test9 │ │ │ ├── test90 │ │ │ ├── test900 │ │ │ ├── test901 │ │ │ ├── test902 │ │ │ ├── test903 │ │ │ ├── test904 │ │ │ ├── test905 │ │ │ ├── test906 │ │ │ ├── test907 │ │ │ ├── test908 │ │ │ ├── test909 │ │ │ ├── test91 │ │ │ ├── test910 │ │ │ ├── test911 │ │ │ ├── test912 │ │ │ ├── test913 │ │ │ ├── test914 │ │ │ ├── test915 │ │ │ ├── test916 │ │ │ ├── test917 │ │ │ ├── test918 │ │ │ ├── test919 │ │ │ ├── test92 │ │ │ ├── test920 │ │ │ ├── test921 │ │ │ ├── test922 │ │ │ ├── test923 │ │ │ ├── test924 │ │ │ ├── test925 │ │ │ ├── test926 │ │ │ ├── test927 │ │ │ ├── test928 │ │ │ ├── test929 │ │ │ ├── test93 │ │ │ ├── test930 │ │ │ ├── test931 │ │ │ ├── test932 │ │ │ ├── test933 │ │ │ ├── test934 │ │ │ ├── test935 │ │ │ ├── test936 │ │ │ ├── test937 │ │ │ ├── test938 │ │ │ ├── test939 │ │ │ ├── test94 │ │ │ ├── test940 │ │ │ ├── test941 │ │ │ ├── test942 │ │ │ ├── test943 │ │ │ ├── test944 │ │ │ ├── test945 │ │ │ ├── test946 │ │ │ ├── test947 │ │ │ ├── test948 │ │ │ ├── test949 │ │ │ ├── test95 │ │ │ ├── test950 │ │ │ ├── test951 │ │ │ ├── test952 │ │ │ ├── test953 │ │ │ ├── test954 │ │ │ ├── test955 │ │ │ ├── test956 │ │ │ ├── test957 │ │ │ ├── test958 │ │ │ ├── test959 │ │ │ ├── test96 │ │ │ ├── test960 │ │ │ ├── test961 │ │ │ ├── test962 │ │ │ ├── test963 │ │ │ ├── test964 │ │ │ ├── test965 │ │ │ ├── test966 │ │ │ ├── test967 │ │ │ ├── test968 │ │ │ ├── test969 │ │ │ ├── test97 │ │ │ ├── test970 │ │ │ ├── test971 │ │ │ ├── test972 │ │ │ ├── test973 │ │ │ ├── test974 │ │ │ ├── test975 │ │ │ ├── test976 │ │ │ ├── test977 │ │ │ ├── test978 │ │ │ ├── test98 │ │ │ ├── test980 │ │ │ ├── test981 │ │ │ ├── test982 │ │ │ ├── test983 │ │ │ ├── test984 │ │ │ ├── test985 │ │ │ ├── test986 │ │ │ ├── test987 │ │ │ ├── test988 │ │ │ ├── test989 │ │ │ └── test99 │ │ ├── devtest.pl │ │ ├── dictserver.py │ │ ├── directories.pm │ │ ├── disable-scan.pl │ │ ├── error-codes.pl │ │ ├── extern-scan.pl │ │ ├── ftpserver.pl │ │ ├── getpart.pm │ │ ├── globalconfig.pm │ │ ├── http-server.pl │ │ ├── http │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── clients │ │ │ │ ├── .deps │ │ │ │ │ ├── h2-download.Po │ │ │ │ │ ├── h2-serverpush.Po │ │ │ │ │ ├── ws-data.Po │ │ │ │ │ └── ws-pingpong.Po │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.inc │ │ │ │ ├── h2-download.c │ │ │ │ ├── h2-serverpush.c │ │ │ │ ├── ws-data.c │ │ │ │ └── ws-pingpong.c │ │ │ ├── config.ini │ │ │ └── config.ini.in │ │ ├── http2-server.pl │ │ ├── http3-server.pl │ │ ├── libtest │ │ │ ├── .checksrc │ │ │ ├── .deps │ │ │ │ ├── chkhostname.Po │ │ │ │ ├── first.Po │ │ │ │ ├── lib1156.Po │ │ │ │ ├── lib1301.Po │ │ │ │ ├── lib1500.Po │ │ │ │ ├── lib1501.Po │ │ │ │ ├── lib1502-first.Po │ │ │ │ ├── lib1502-lib1502.Po │ │ │ │ ├── lib1502-testutil.Po │ │ │ │ ├── lib1503-first.Po │ │ │ │ ├── lib1503-lib1502.Po │ │ │ │ ├── lib1503-testutil.Po │ │ │ │ ├── lib1504-first.Po │ │ │ │ ├── lib1504-lib1502.Po │ │ │ │ ├── lib1504-testutil.Po │ │ │ │ ├── lib1505-first.Po │ │ │ │ ├── lib1505-lib1502.Po │ │ │ │ ├── lib1505-testutil.Po │ │ │ │ ├── lib1506.Po │ │ │ │ ├── lib1507.Po │ │ │ │ ├── lib1508.Po │ │ │ │ ├── lib1509.Po │ │ │ │ ├── lib1510.Po │ │ │ │ ├── lib1511.Po │ │ │ │ ├── lib1512.Po │ │ │ │ ├── lib1513.Po │ │ │ │ ├── lib1514.Po │ │ │ │ ├── lib1515.Po │ │ │ │ ├── lib1517.Po │ │ │ │ ├── lib1518.Po │ │ │ │ ├── lib1520.Po │ │ │ │ ├── lib1521-first.Po │ │ │ │ ├── lib1521-lib1521.Po │ │ │ │ ├── lib1522.Po │ │ │ │ ├── lib1523.Po │ │ │ │ ├── lib1525.Po │ │ │ │ ├── lib1526.Po │ │ │ │ ├── lib1527.Po │ │ │ │ ├── lib1528.Po │ │ │ │ ├── lib1529.Po │ │ │ │ ├── lib1530.Po │ │ │ │ ├── lib1531.Po │ │ │ │ ├── lib1532.Po │ │ │ │ ├── lib1533.Po │ │ │ │ ├── lib1534.Po │ │ │ │ ├── lib1535.Po │ │ │ │ ├── lib1536.Po │ │ │ │ ├── lib1537.Po │ │ │ │ ├── lib1538.Po │ │ │ │ ├── lib1539-first.Po │ │ │ │ ├── lib1539-lib1514.Po │ │ │ │ ├── lib1539-testutil.Po │ │ │ │ ├── lib1540.Po │ │ │ │ ├── lib1542.Po │ │ │ │ ├── lib1543-first.Po │ │ │ │ ├── lib1543-lib1518.Po │ │ │ │ ├── lib1550.Po │ │ │ │ ├── lib1551.Po │ │ │ │ ├── lib1552.Po │ │ │ │ ├── lib1553.Po │ │ │ │ ├── lib1554.Po │ │ │ │ ├── lib1555.Po │ │ │ │ ├── lib1556.Po │ │ │ │ ├── lib1557.Po │ │ │ │ ├── lib1558.Po │ │ │ │ ├── lib1559.Po │ │ │ │ ├── lib1560.Po │ │ │ │ ├── lib1564.Po │ │ │ │ ├── lib1565.Po │ │ │ │ ├── lib1567.Po │ │ │ │ ├── lib1568.Po │ │ │ │ ├── lib1569.Po │ │ │ │ ├── lib1591.Po │ │ │ │ ├── lib1592.Po │ │ │ │ ├── lib1593.Po │ │ │ │ ├── lib1594.Po │ │ │ │ ├── lib1596-first.Po │ │ │ │ ├── lib1596-lib1594.Po │ │ │ │ ├── lib1596-testutil.Po │ │ │ │ ├── lib1597.Po │ │ │ │ ├── lib1662.Po │ │ │ │ ├── lib1903.Po │ │ │ │ ├── lib1905.Po │ │ │ │ ├── lib1906.Po │ │ │ │ ├── lib1907.Po │ │ │ │ ├── lib1908.Po │ │ │ │ ├── lib1910.Po │ │ │ │ ├── lib1911.Po │ │ │ │ ├── lib1912.Po │ │ │ │ ├── lib1913.Po │ │ │ │ ├── lib1915.Po │ │ │ │ ├── lib1916.Po │ │ │ │ ├── lib1917-first.Po │ │ │ │ ├── lib1917-lib1916.Po │ │ │ │ ├── lib1918.Po │ │ │ │ ├── lib1919.Po │ │ │ │ ├── lib1933.Po │ │ │ │ ├── lib1934.Po │ │ │ │ ├── lib1935.Po │ │ │ │ ├── lib1936.Po │ │ │ │ ├── lib1937.Po │ │ │ │ ├── lib1938.Po │ │ │ │ ├── lib1939.Po │ │ │ │ ├── lib1940.Po │ │ │ │ ├── lib1945.Po │ │ │ │ ├── lib1946-first.Po │ │ │ │ ├── lib1946-lib1940.Po │ │ │ │ ├── lib1947.Po │ │ │ │ ├── lib1948.Po │ │ │ │ ├── lib1955.Po │ │ │ │ ├── lib1956.Po │ │ │ │ ├── lib1957.Po │ │ │ │ ├── lib1958.Po │ │ │ │ ├── lib1959.Po │ │ │ │ ├── lib1960.Po │ │ │ │ ├── lib1970.Po │ │ │ │ ├── lib1971.Po │ │ │ │ ├── lib1972.Po │ │ │ │ ├── lib1973.Po │ │ │ │ ├── lib1974.Po │ │ │ │ ├── lib1975.Po │ │ │ │ ├── lib2301.Po │ │ │ │ ├── lib2302.Po │ │ │ │ ├── lib2304.Po │ │ │ │ ├── lib2305.Po │ │ │ │ ├── lib2306.Po │ │ │ │ ├── lib2402.Po │ │ │ │ ├── lib2502.Po │ │ │ │ ├── lib3010.Po │ │ │ │ ├── lib3025.Po │ │ │ │ ├── lib3026.Po │ │ │ │ ├── lib3027.Po │ │ │ │ ├── lib3100.Po │ │ │ │ ├── lib3101.Po │ │ │ │ ├── lib500.Po │ │ │ │ ├── lib501.Po │ │ │ │ ├── lib502.Po │ │ │ │ ├── lib503.Po │ │ │ │ ├── lib504.Po │ │ │ │ ├── lib505.Po │ │ │ │ ├── lib506.Po │ │ │ │ ├── lib507.Po │ │ │ │ ├── lib508.Po │ │ │ │ ├── lib509.Po │ │ │ │ ├── lib510.Po │ │ │ │ ├── lib511.Po │ │ │ │ ├── lib512.Po │ │ │ │ ├── lib513.Po │ │ │ │ ├── lib514.Po │ │ │ │ ├── lib515.Po │ │ │ │ ├── lib516.Po │ │ │ │ ├── lib517.Po │ │ │ │ ├── lib518.Po │ │ │ │ ├── lib519.Po │ │ │ │ ├── lib520.Po │ │ │ │ ├── lib521.Po │ │ │ │ ├── lib523.Po │ │ │ │ ├── lib524.Po │ │ │ │ ├── lib525.Po │ │ │ │ ├── lib526-first.Po │ │ │ │ ├── lib526-lib526.Po │ │ │ │ ├── lib526-testutil.Po │ │ │ │ ├── lib527-first.Po │ │ │ │ ├── lib527-lib526.Po │ │ │ │ ├── lib527-testutil.Po │ │ │ │ ├── lib529-first.Po │ │ │ │ ├── lib529-lib525.Po │ │ │ │ ├── lib529-testutil.Po │ │ │ │ ├── lib530.Po │ │ │ │ ├── lib532-first.Po │ │ │ │ ├── lib532-lib526.Po │ │ │ │ ├── lib532-testutil.Po │ │ │ │ ├── lib533.Po │ │ │ │ ├── lib537.Po │ │ │ │ ├── lib539.Po │ │ │ │ ├── lib540.Po │ │ │ │ ├── lib541.Po │ │ │ │ ├── lib542.Po │ │ │ │ ├── lib543.Po │ │ │ │ ├── lib544.Po │ │ │ │ ├── lib545-first.Po │ │ │ │ ├── lib545-lib544.Po │ │ │ │ ├── lib547.Po │ │ │ │ ├── lib548-first.Po │ │ │ │ ├── lib548-lib547.Po │ │ │ │ ├── lib549.Po │ │ │ │ ├── lib552.Po │ │ │ │ ├── lib553.Po │ │ │ │ ├── lib554.Po │ │ │ │ ├── lib555.Po │ │ │ │ ├── lib556.Po │ │ │ │ ├── lib557.Po │ │ │ │ ├── lib558.Po │ │ │ │ ├── lib559.Po │ │ │ │ ├── lib560.Po │ │ │ │ ├── lib562.Po │ │ │ │ ├── lib564.Po │ │ │ │ ├── lib565-first.Po │ │ │ │ ├── lib565-lib510.Po │ │ │ │ ├── lib566.Po │ │ │ │ ├── lib567.Po │ │ │ │ ├── lib568.Po │ │ │ │ ├── lib569.Po │ │ │ │ ├── lib570.Po │ │ │ │ ├── lib571.Po │ │ │ │ ├── lib572.Po │ │ │ │ ├── lib573.Po │ │ │ │ ├── lib574.Po │ │ │ │ ├── lib575.Po │ │ │ │ ├── lib576.Po │ │ │ │ ├── lib578.Po │ │ │ │ ├── lib579.Po │ │ │ │ ├── lib582.Po │ │ │ │ ├── lib583.Po │ │ │ │ ├── lib584-first.Po │ │ │ │ ├── lib584-lib589.Po │ │ │ │ ├── lib585-first.Po │ │ │ │ ├── lib585-lib500.Po │ │ │ │ ├── lib585-testtrace.Po │ │ │ │ ├── lib585-testutil.Po │ │ │ │ ├── lib586.Po │ │ │ │ ├── lib587-first.Po │ │ │ │ ├── lib587-lib554.Po │ │ │ │ ├── lib589.Po │ │ │ │ ├── lib590.Po │ │ │ │ ├── lib591.Po │ │ │ │ ├── lib597.Po │ │ │ │ ├── lib598.Po │ │ │ │ ├── lib599.Po │ │ │ │ ├── lib643.Po │ │ │ │ ├── lib645-first.Po │ │ │ │ ├── lib645-lib643.Po │ │ │ │ ├── lib650.Po │ │ │ │ ├── lib651.Po │ │ │ │ ├── lib652.Po │ │ │ │ ├── lib653.Po │ │ │ │ ├── lib654.Po │ │ │ │ ├── lib655.Po │ │ │ │ ├── lib658.Po │ │ │ │ ├── lib659.Po │ │ │ │ ├── lib661.Po │ │ │ │ ├── lib666.Po │ │ │ │ ├── lib667.Po │ │ │ │ ├── lib668.Po │ │ │ │ ├── lib670-first.Po │ │ │ │ ├── lib670-lib670.Po │ │ │ │ ├── lib670-testutil.Po │ │ │ │ ├── lib670.Po │ │ │ │ ├── lib671-first.Po │ │ │ │ ├── lib671-lib670.Po │ │ │ │ ├── lib671-testutil.Po │ │ │ │ ├── lib672-first.Po │ │ │ │ ├── lib672-lib670.Po │ │ │ │ ├── lib672-testutil.Po │ │ │ │ ├── lib674.Po │ │ │ │ ├── lib676.Po │ │ │ │ ├── lib677.Po │ │ │ │ ├── lib678.Po │ │ │ │ ├── libauthretry.Po │ │ │ │ ├── libhostname_la-sethostname.Plo │ │ │ │ ├── libntlmconnect.Po │ │ │ │ ├── libprereq.Po │ │ │ │ ├── libstubgss_la-stub_gssapi.Plo │ │ │ │ ├── testtrace.Po │ │ │ │ └── testutil.Po │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── chkhostname.c │ │ │ ├── first.c │ │ │ ├── lib1156.c │ │ │ ├── lib1301.c │ │ │ ├── lib1500.c │ │ │ ├── lib1501.c │ │ │ ├── lib1502.c │ │ │ ├── lib1506.c │ │ │ ├── lib1507.c │ │ │ ├── lib1508.c │ │ │ ├── lib1509.c │ │ │ ├── lib1510.c │ │ │ ├── lib1511.c │ │ │ ├── lib1512.c │ │ │ ├── lib1513.c │ │ │ ├── lib1514.c │ │ │ ├── lib1515.c │ │ │ ├── lib1517.c │ │ │ ├── lib1518.c │ │ │ ├── lib1520.c │ │ │ ├── lib1522.c │ │ │ ├── lib1523.c │ │ │ ├── lib1525.c │ │ │ ├── lib1526.c │ │ │ ├── lib1527.c │ │ │ ├── lib1528.c │ │ │ ├── lib1529.c │ │ │ ├── lib1530.c │ │ │ ├── lib1531.c │ │ │ ├── lib1532.c │ │ │ ├── lib1533.c │ │ │ ├── lib1534.c │ │ │ ├── lib1535.c │ │ │ ├── lib1536.c │ │ │ ├── lib1537.c │ │ │ ├── lib1538.c │ │ │ ├── lib1540.c │ │ │ ├── lib1542.c │ │ │ ├── lib1550.c │ │ │ ├── lib1551.c │ │ │ ├── lib1552.c │ │ │ ├── lib1553.c │ │ │ ├── lib1554.c │ │ │ ├── lib1555.c │ │ │ ├── lib1556.c │ │ │ ├── lib1557.c │ │ │ ├── lib1558.c │ │ │ ├── lib1559.c │ │ │ ├── lib1560.c │ │ │ ├── lib1564.c │ │ │ ├── lib1565.c │ │ │ ├── lib1567.c │ │ │ ├── lib1568.c │ │ │ ├── lib1569.c │ │ │ ├── lib1591.c │ │ │ ├── lib1592.c │ │ │ ├── lib1593.c │ │ │ ├── lib1594.c │ │ │ ├── lib1597.c │ │ │ ├── lib1662.c │ │ │ ├── lib1903.c │ │ │ ├── lib1905.c │ │ │ ├── lib1906.c │ │ │ ├── lib1907.c │ │ │ ├── lib1908.c │ │ │ ├── lib1910.c │ │ │ ├── lib1911.c │ │ │ ├── lib1912.c │ │ │ ├── lib1913.c │ │ │ ├── lib1915.c │ │ │ ├── lib1916.c │ │ │ ├── lib1918.c │ │ │ ├── lib1919.c │ │ │ ├── lib1933.c │ │ │ ├── lib1934.c │ │ │ ├── lib1935.c │ │ │ ├── lib1936.c │ │ │ ├── lib1937.c │ │ │ ├── lib1938.c │ │ │ ├── lib1939.c │ │ │ ├── lib1940.c │ │ │ ├── lib1945.c │ │ │ ├── lib1947.c │ │ │ ├── lib1948.c │ │ │ ├── lib1955.c │ │ │ ├── lib1956.c │ │ │ ├── lib1957.c │ │ │ ├── lib1958.c │ │ │ ├── lib1959.c │ │ │ ├── lib1960.c │ │ │ ├── lib1970.c │ │ │ ├── lib1971.c │ │ │ ├── lib1972.c │ │ │ ├── lib1973.c │ │ │ ├── lib1974.c │ │ │ ├── lib1975.c │ │ │ ├── lib2301.c │ │ │ ├── lib2302.c │ │ │ ├── lib2304.c │ │ │ ├── lib2305.c │ │ │ ├── lib2306.c │ │ │ ├── lib2402.c │ │ │ ├── lib2502.c │ │ │ ├── lib3010.c │ │ │ ├── lib3025.c │ │ │ ├── lib3026.c │ │ │ ├── lib3027.c │ │ │ ├── lib3100.c │ │ │ ├── lib3101.c │ │ │ ├── lib500.c │ │ │ ├── lib501.c │ │ │ ├── lib502.c │ │ │ ├── lib503.c │ │ │ ├── lib504.c │ │ │ ├── lib505.c │ │ │ ├── lib506.c │ │ │ ├── lib507.c │ │ │ ├── lib508.c │ │ │ ├── lib509.c │ │ │ ├── lib510.c │ │ │ ├── lib511.c │ │ │ ├── lib512.c │ │ │ ├── lib513.c │ │ │ ├── lib514.c │ │ │ ├── lib515.c │ │ │ ├── lib516.c │ │ │ ├── lib517.c │ │ │ ├── lib518.c │ │ │ ├── lib519.c │ │ │ ├── lib520.c │ │ │ ├── lib521.c │ │ │ ├── lib523.c │ │ │ ├── lib524.c │ │ │ ├── lib525.c │ │ │ ├── lib526.c │ │ │ ├── lib530.c │ │ │ ├── lib533.c │ │ │ ├── lib537.c │ │ │ ├── lib539.c │ │ │ ├── lib540.c │ │ │ ├── lib541.c │ │ │ ├── lib542.c │ │ │ ├── lib543.c │ │ │ ├── lib544.c │ │ │ ├── lib547.c │ │ │ ├── lib549.c │ │ │ ├── lib552.c │ │ │ ├── lib553.c │ │ │ ├── lib554.c │ │ │ ├── lib555.c │ │ │ ├── lib556.c │ │ │ ├── lib557.c │ │ │ ├── lib558.c │ │ │ ├── lib559.c │ │ │ ├── lib560.c │ │ │ ├── lib562.c │ │ │ ├── lib564.c │ │ │ ├── lib566.c │ │ │ ├── lib567.c │ │ │ ├── lib568.c │ │ │ ├── lib569.c │ │ │ ├── lib570.c │ │ │ ├── lib571.c │ │ │ ├── lib572.c │ │ │ ├── lib573.c │ │ │ ├── lib574.c │ │ │ ├── lib575.c │ │ │ ├── lib576.c │ │ │ ├── lib578.c │ │ │ ├── lib579.c │ │ │ ├── lib582.c │ │ │ ├── lib583.c │ │ │ ├── lib586.c │ │ │ ├── lib589.c │ │ │ ├── lib590.c │ │ │ ├── lib591.c │ │ │ ├── lib597.c │ │ │ ├── lib598.c │ │ │ ├── lib599.c │ │ │ ├── lib643.c │ │ │ ├── lib650.c │ │ │ ├── lib651.c │ │ │ ├── lib652.c │ │ │ ├── lib653.c │ │ │ ├── lib654.c │ │ │ ├── lib655.c │ │ │ ├── lib658.c │ │ │ ├── lib659.c │ │ │ ├── lib661.c │ │ │ ├── lib666.c │ │ │ ├── lib667.c │ │ │ ├── lib668.c │ │ │ ├── lib670.c │ │ │ ├── lib674.c │ │ │ ├── lib676.c │ │ │ ├── lib677.c │ │ │ ├── lib678.c │ │ │ ├── libauthretry.c │ │ │ ├── libntlmconnect.c │ │ │ ├── libprereq.c │ │ │ ├── mk-lib1521.pl │ │ │ ├── notexists.pl │ │ │ ├── sethostname.c │ │ │ ├── sethostname.h │ │ │ ├── stub_gssapi.c │ │ │ ├── stub_gssapi.h │ │ │ ├── test.h │ │ │ ├── test1013.pl │ │ │ ├── test1022.pl │ │ │ ├── test307.pl │ │ │ ├── test610.pl │ │ │ ├── test613.pl │ │ │ ├── testtrace.c │ │ │ ├── testtrace.h │ │ │ ├── testutil.c │ │ │ └── testutil.h │ │ ├── manpage-scan.pl │ │ ├── manpage-syntax.pl │ │ ├── markdown-uppercase.pl │ │ ├── mem-include-scan.pl │ │ ├── memanalyze.pl │ │ ├── negtelnetserver.py │ │ ├── nroff-scan.pl │ │ ├── option-check.pl │ │ ├── options-scan.pl │ │ ├── pathhelp.pm │ │ ├── processhelp.pm │ │ ├── rtspserver.pl │ │ ├── runner.pm │ │ ├── runtests.1 │ │ ├── runtests.pl │ │ ├── secureserver.pl │ │ ├── server │ │ │ ├── .deps │ │ │ │ ├── disabled-disabled.Po │ │ │ │ ├── fake_ntlm-fake_ntlm.Po │ │ │ │ ├── fake_ntlm-getpart.Po │ │ │ │ ├── fake_ntlm-util.Po │ │ │ │ ├── getpart-getpart.Po │ │ │ │ ├── getpart-testpart.Po │ │ │ │ ├── mqttd-getpart.Po │ │ │ │ ├── mqttd-mqttd.Po │ │ │ │ ├── mqttd-util.Po │ │ │ │ ├── resolve-getpart.Po │ │ │ │ ├── resolve-resolve.Po │ │ │ │ ├── resolve-util.Po │ │ │ │ ├── rtspd-getpart.Po │ │ │ │ ├── rtspd-rtspd.Po │ │ │ │ ├── rtspd-util.Po │ │ │ │ ├── sockfilt-getpart.Po │ │ │ │ ├── sockfilt-sockfilt.Po │ │ │ │ ├── sockfilt-util.Po │ │ │ │ ├── socksd-getpart.Po │ │ │ │ ├── socksd-socksd.Po │ │ │ │ ├── socksd-util.Po │ │ │ │ ├── sws-getpart.Po │ │ │ │ ├── sws-sws.Po │ │ │ │ ├── sws-util.Po │ │ │ │ ├── tftpd-getpart.Po │ │ │ │ ├── tftpd-tftpd.Po │ │ │ │ └── tftpd-util.Po │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── base64.pl │ │ │ ├── disabled.c │ │ │ ├── fake_ntlm.c │ │ │ ├── getpart.c │ │ │ ├── getpart.h │ │ │ ├── mqttd.c │ │ │ ├── resolve.c │ │ │ ├── rtspd.c │ │ │ ├── server_setup.h │ │ │ ├── server_sockaddr.h │ │ │ ├── sockfilt.c │ │ │ ├── socksd.c │ │ │ ├── sws.c │ │ │ ├── testpart.c │ │ │ ├── tftp.h │ │ │ ├── tftpd.c │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── serverhelp.pm │ │ ├── servers.pm │ │ ├── smbserver.py │ │ ├── sshhelp.pm │ │ ├── sshserver.pl │ │ ├── stunnel.pem │ │ ├── symbol-scan.pl │ │ ├── testcurl.1 │ │ ├── testcurl.pl │ │ ├── testutil.pm │ │ ├── tftpserver.pl │ │ ├── unit │ │ │ ├── .deps │ │ │ │ ├── unit1300.Po │ │ │ │ ├── unit1302.Po │ │ │ │ ├── unit1303.Po │ │ │ │ ├── unit1304.Po │ │ │ │ ├── unit1305.Po │ │ │ │ ├── unit1307.Po │ │ │ │ ├── unit1308.Po │ │ │ │ ├── unit1309.Po │ │ │ │ ├── unit1323.Po │ │ │ │ ├── unit1330.Po │ │ │ │ ├── unit1394.Po │ │ │ │ ├── unit1395.Po │ │ │ │ ├── unit1396.Po │ │ │ │ ├── unit1397.Po │ │ │ │ ├── unit1398.Po │ │ │ │ ├── unit1399.Po │ │ │ │ ├── unit1600.Po │ │ │ │ ├── unit1601.Po │ │ │ │ ├── unit1602.Po │ │ │ │ ├── unit1603.Po │ │ │ │ ├── unit1604.Po │ │ │ │ ├── unit1605.Po │ │ │ │ ├── unit1606.Po │ │ │ │ ├── unit1607.Po │ │ │ │ ├── unit1608.Po │ │ │ │ ├── unit1609.Po │ │ │ │ ├── unit1610.Po │ │ │ │ ├── unit1611.Po │ │ │ │ ├── unit1612.Po │ │ │ │ ├── unit1614.Po │ │ │ │ ├── unit1620.Po │ │ │ │ ├── unit1621.Po │ │ │ │ ├── unit1650.Po │ │ │ │ ├── unit1651.Po │ │ │ │ ├── unit1652.Po │ │ │ │ ├── unit1653.Po │ │ │ │ ├── unit1654.Po │ │ │ │ ├── unit1655.Po │ │ │ │ ├── unit1660.Po │ │ │ │ ├── unit1661.Po │ │ │ │ ├── unit2600.Po │ │ │ │ ├── unit2601.Po │ │ │ │ ├── unit2602.Po │ │ │ │ ├── unit2603.Po │ │ │ │ └── unit3200.Po │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── README.md │ │ │ ├── curlcheck.h │ │ │ ├── unit1300.c │ │ │ ├── unit1302.c │ │ │ ├── unit1303.c │ │ │ ├── unit1304.c │ │ │ ├── unit1305.c │ │ │ ├── unit1307.c │ │ │ ├── unit1308.c │ │ │ ├── unit1309.c │ │ │ ├── unit1323.c │ │ │ ├── unit1330.c │ │ │ ├── unit1394.c │ │ │ ├── unit1395.c │ │ │ ├── unit1396.c │ │ │ ├── unit1397.c │ │ │ ├── unit1398.c │ │ │ ├── unit1399.c │ │ │ ├── unit1600.c │ │ │ ├── unit1601.c │ │ │ ├── unit1602.c │ │ │ ├── unit1603.c │ │ │ ├── unit1604.c │ │ │ ├── unit1605.c │ │ │ ├── unit1606.c │ │ │ ├── unit1607.c │ │ │ ├── unit1608.c │ │ │ ├── unit1609.c │ │ │ ├── unit1610.c │ │ │ ├── unit1611.c │ │ │ ├── unit1612.c │ │ │ ├── unit1614.c │ │ │ ├── unit1620.c │ │ │ ├── unit1621.c │ │ │ ├── unit1650.c │ │ │ ├── unit1651.c │ │ │ ├── unit1652.c │ │ │ ├── unit1653.c │ │ │ ├── unit1654.c │ │ │ ├── unit1655.c │ │ │ ├── unit1660.c │ │ │ ├── unit1661.c │ │ │ ├── unit2600.c │ │ │ ├── unit2601.c │ │ │ ├── unit2602.c │ │ │ ├── unit2603.c │ │ │ └── unit3200.c │ │ ├── util.py │ │ ├── valgrind.pm │ │ ├── valgrind.supp │ │ └── version-scan.pl │ └── winbuild │ │ ├── Makefile.vc │ │ ├── MakefileBuild.vc │ │ ├── README.md │ │ └── gen_resp_file.bat ├── entitlements.ios.plist ├── post_import_scripts │ └── remove_gpl_files.sh ├── xcconfigs │ ├── common.xcconfig │ ├── curl.xcconfig │ ├── libcurl-version.xcconfig │ ├── libcurl.xcconfig │ └── tests.xcconfig └── xcscripts │ ├── install_curlconfig.sh │ ├── install_libtest.sh │ ├── install_opensource.sh │ └── link_dylibs.sh ├── curl_ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── holzschu.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── holzschu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── curl_ios ├── Info.plist └── curl_ios.h ├── curl_ios_static.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── holzschu.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── holzschu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── curl_ios_static ├── Info.plist └── curl_ios.h ├── file_cmds ├── chflags │ ├── chflags.1 │ └── chflags.c ├── chmod │ ├── chmod.1 │ ├── chmod.c │ ├── chmod_acl.c │ └── chmod_acl.h ├── chown │ ├── chgrp.1 │ ├── chown.8 │ └── chown.c ├── cksum │ ├── cksum.1 │ ├── cksum.c │ ├── crc.c │ ├── crc32.c │ ├── extern.h │ ├── print.c │ ├── sum.1 │ ├── sum1.c │ └── sum2.c ├── compress │ ├── compress.1 │ ├── compress.c │ ├── doc │ │ ├── NOTES │ │ ├── README │ │ └── revision.log │ ├── uncompress.1 │ ├── zcat.sh │ ├── zopen.3 │ ├── zopen.c │ └── zopen.h ├── cp │ ├── cp.1 │ ├── cp.c │ ├── extern.h │ └── utils.c ├── csh │ └── strpct.c ├── dd │ ├── args.c │ ├── conv.c │ ├── conv_tab.c │ ├── dd.1 │ ├── dd.c │ ├── dd.entitlements │ ├── dd.h │ ├── extern.h │ ├── install_symlink.sh │ ├── misc.c │ └── position.c ├── df │ ├── df.1 │ ├── df.c │ └── vfslist.c ├── du │ ├── du.1 │ └── du.c ├── file_cmds.xcodeproj │ └── project.pbxproj ├── gzip │ ├── futimens.c │ ├── gzexe │ ├── gzexe.1 │ ├── gzip.1 │ ├── gzip.c │ ├── gzip.plist │ ├── gzip.xcconfig │ ├── install_scripts.sh │ ├── unbzip2.c │ ├── unpack.c │ ├── unxz.c │ ├── zdiff │ ├── zdiff.1 │ ├── zforce │ ├── zforce.1 │ ├── zmore │ ├── zmore.1 │ ├── znew │ ├── znew.1 │ └── zuncompress.c ├── install │ ├── install.1 │ ├── pathnames.h │ └── xinstall.c ├── ipcrm │ ├── ipcrm.1 │ └── ipcrm.c ├── ipcs │ ├── ipcs.1 │ └── ipcs.c ├── ln │ ├── link.1 │ ├── ln.1 │ ├── ln.c │ └── symlink.7 ├── ls │ ├── cmp.c │ ├── extern.h │ ├── ls.1 │ ├── ls.c │ ├── ls.h │ ├── print.c │ └── util.c ├── mkdir │ ├── mkdir.1 │ └── mkdir.c ├── mkfifo │ ├── mkfifo.1 │ └── mkfifo.c ├── mknod │ ├── mknod.8 │ └── mknod.c ├── mtree │ ├── commoncrypto.c │ ├── commoncrypto.h │ ├── compare.c │ ├── create.c │ ├── excludes.c │ ├── extern.h │ ├── misc.c │ ├── mtree.8 │ ├── mtree.c │ ├── mtree.h │ ├── spec.c │ ├── specspec.c │ ├── test │ │ ├── test00.sh │ │ ├── test01.sh │ │ ├── test02.sh │ │ ├── test03.sh │ │ └── test04.sh │ └── verify.c ├── mv │ ├── mv.1 │ ├── mv.c │ └── pathnames.h ├── pathchk │ ├── pathchk.1 │ └── pathchk.c ├── pax │ ├── ar_io.c │ ├── ar_subs.c │ ├── buf_subs.c │ ├── cache.c │ ├── cache.h │ ├── cpio.1 │ ├── cpio.c │ ├── cpio.h │ ├── extern.h │ ├── file_subs.c │ ├── ftree.c │ ├── ftree.h │ ├── gen_subs.c │ ├── getoldopt.c │ ├── options.c │ ├── options.h │ ├── pat_rep.c │ ├── pat_rep.h │ ├── pax.1 │ ├── pax.c │ ├── pax.h │ ├── pax_format.c │ ├── pax_format.h │ ├── sel_subs.c │ ├── sel_subs.h │ ├── tables.c │ ├── tables.h │ ├── tar.c │ ├── tar.h │ └── tty_subs.c ├── rm │ ├── rm.1 │ ├── rm.c │ └── unlink.1 ├── rmdir │ ├── rmdir.1 │ └── rmdir.c ├── rmt │ ├── rmt.8 │ └── rmt.c ├── shar │ ├── shar.1 │ └── shar.sh ├── stat │ ├── readlink.1 │ ├── stat.1 │ └── stat.c ├── touch │ ├── touch.1 │ └── touch.c └── xcodescripts │ └── hardlink.sh ├── file_cmds_ios ├── file_cmds_ios.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── holzschu.xcuserdatad │ │ │ ├── IDEFindNavigatorScopes.plist │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── holzschu.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── file_cmds_ios │ ├── Info.plist │ └── file_cmds_ios.h ├── files ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── xcschemes │ │ └── files.xcscheme ├── Info.plist └── files.h ├── getopt.c ├── getopt_long.c ├── ios_error.h ├── ios_system.m ├── ios_system.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── holzschu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ios_system ├── Info.plist └── ios_system.h ├── less-34 ├── BSD.xcconfig ├── defines.h ├── less.1 ├── less.plist ├── less.txt ├── less.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── less │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.aut │ ├── Makefile.dsb │ ├── Makefile.dsg │ ├── Makefile.dsu │ ├── Makefile.in │ ├── Makefile.o2e │ ├── Makefile.o9c │ ├── Makefile.o9u │ ├── Makefile.wnb │ ├── Makefile.wnm │ ├── NEWS │ ├── README │ ├── brac.c │ ├── ch.c │ ├── charset.c │ ├── charset.h │ ├── cmd.h │ ├── cmdbuf.c │ ├── command.c │ ├── compose.uni │ ├── configure │ ├── configure.ac │ ├── cvt.c │ ├── decode.c │ ├── defines.ds │ ├── defines.h.in │ ├── defines.o2 │ ├── defines.o9 │ ├── defines.wn │ ├── edit.c │ ├── filename.c │ ├── forwback.c │ ├── funcs.h │ ├── help.c │ ├── ifile.c │ ├── input.c │ ├── install.sh │ ├── jump.c │ ├── less.h │ ├── less.hlp │ ├── less.man │ ├── less.nro │ ├── lessecho.c │ ├── lessecho.man │ ├── lessecho.nro │ ├── lglob.h │ ├── line.c │ ├── linenum.c │ ├── lsystem.c │ ├── main.c │ ├── mark.c │ ├── mkfuncs.awk │ ├── mkhelp.c │ ├── mkinstalldirs │ ├── mkutable │ ├── optfunc.c │ ├── option.c │ ├── option.h │ ├── opttbl.c │ ├── os.c │ ├── output.c │ ├── pattern.c │ ├── pattern.h │ ├── pckeys.h │ ├── position.c │ ├── position.h │ ├── prompt.c │ ├── regexp.c │ ├── regexp.h │ ├── screen.c │ ├── scrsize.c │ ├── search.c │ ├── signal.c │ ├── tableinit.h │ ├── tags.c │ ├── ttyin.c │ ├── ubin.uni │ ├── version.c │ └── wide.uni └── lessecho.1 ├── libarchive ├── README ├── config.h ├── libarchive.plist ├── libarchive.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── libarchive │ ├── CMakeLists.txt │ ├── COPYING │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── build │ │ ├── autoconf │ │ │ ├── check_stdcall_func.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── la_uid_t.m4 │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ ├── autogen.sh │ │ ├── bump-version.sh │ │ ├── clean.sh │ │ ├── cmake │ │ │ ├── AddTest28.cmake │ │ │ ├── CheckFileOffsetBits.c │ │ │ ├── CheckFileOffsetBits.cmake │ │ │ ├── CheckFuncs.cmake │ │ │ ├── CheckFuncs_stub.c.in │ │ │ ├── CheckHeaderDirent.cmake │ │ │ ├── CheckStructMember.cmake │ │ │ ├── CheckTypeExists.cmake │ │ │ ├── FindLZMA.cmake │ │ │ └── config.h.in │ │ ├── pkgconfig │ │ │ └── libarchive.pc.in │ │ ├── version │ │ └── windows │ │ │ ├── mvcpp.nt │ │ │ ├── vc71 │ │ │ ├── libarchive.sln │ │ │ └── libarchive.vcproj │ │ │ ├── vc80 │ │ │ ├── libarchive.sln │ │ │ ├── libarchive.vcproj │ │ │ └── libarchive_test │ │ │ │ └── libarchive_test.vcproj │ │ │ ├── vc90 │ │ │ ├── libarchive.sln │ │ │ ├── libarchive.vcproj │ │ │ └── libarchive_test │ │ │ │ └── libarchive_test.vcproj │ │ │ └── wccpp.nt │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── README │ │ ├── libarchive.1aix53.spec │ │ ├── libarchive.spec │ │ ├── libarchive_autodetect-st_lib_archive.m4 │ │ ├── psota-benchmark │ │ │ ├── results.txt │ │ │ └── tcp.sh │ │ ├── shar │ │ │ ├── shar.1 │ │ │ ├── shar.c │ │ │ ├── tree.c │ │ │ ├── tree.h │ │ │ └── tree_config.h │ │ └── untar.c │ ├── cpio │ │ ├── CMakeLists.txt │ │ ├── bsdcpio.1 │ │ ├── cmdline.c │ │ ├── config_freebsd.h │ │ ├── cpio.c │ │ ├── cpio.h │ │ ├── cpio_platform.h │ │ ├── cpio_windows.c │ │ ├── cpio_windows.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── list.h │ │ │ ├── main.c │ │ │ ├── test.h │ │ │ ├── test_0.c │ │ │ ├── test_basic.c │ │ │ ├── test_cmdline.c │ │ │ ├── test_format_newc.c │ │ │ ├── test_gcpio_compat.c │ │ │ ├── test_gcpio_compat_ref.bin.uu │ │ │ ├── test_gcpio_compat_ref.crc.uu │ │ │ ├── test_gcpio_compat_ref.newc.uu │ │ │ ├── test_gcpio_compat_ref.ustar.uu │ │ │ ├── test_option_B_upper.c │ │ │ ├── test_option_C_upper.c │ │ │ ├── test_option_J_upper.c │ │ │ ├── test_option_L_upper.c │ │ │ ├── test_option_Z_upper.c │ │ │ ├── test_option_a.c │ │ │ ├── test_option_c.c │ │ │ ├── test_option_d.c │ │ │ ├── test_option_f.c │ │ │ ├── test_option_f.cpio.uu │ │ │ ├── test_option_help.c │ │ │ ├── test_option_l.c │ │ │ ├── test_option_lzma.c │ │ │ ├── test_option_m.c │ │ │ ├── test_option_m.cpio.uu │ │ │ ├── test_option_t.c │ │ │ ├── test_option_t.cpio.uu │ │ │ ├── test_option_t.stdout.uu │ │ │ ├── test_option_tv.stdout.uu │ │ │ ├── test_option_u.c │ │ │ ├── test_option_version.c │ │ │ ├── test_option_y.c │ │ │ ├── test_option_z.c │ │ │ ├── test_owner_parse.c │ │ │ ├── test_passthrough_dotdot.c │ │ │ ├── test_passthrough_reverse.c │ │ │ └── test_pathmatch.c │ ├── doc │ │ ├── html │ │ │ ├── Makefile │ │ │ ├── archive_entry.3.html │ │ │ ├── archive_read.3.html │ │ │ ├── archive_read_disk.3.html │ │ │ ├── archive_util.3.html │ │ │ ├── archive_write.3.html │ │ │ ├── archive_write_disk.3.html │ │ │ ├── bsdcpio.1.html │ │ │ ├── bsdtar.1.html │ │ │ ├── cpio.5.html │ │ │ ├── libarchive-formats.5.html │ │ │ ├── libarchive.3.html │ │ │ ├── libarchive_internals.3.html │ │ │ ├── mtree.5.html │ │ │ └── tar.5.html │ │ ├── man │ │ │ ├── Makefile │ │ │ ├── archive_entry.3 │ │ │ ├── archive_read.3 │ │ │ ├── archive_read_disk.3 │ │ │ ├── archive_util.3 │ │ │ ├── archive_write.3 │ │ │ ├── archive_write_disk.3 │ │ │ ├── bsdcpio.1 │ │ │ ├── bsdtar.1 │ │ │ ├── cpio.5 │ │ │ ├── libarchive-formats.5 │ │ │ ├── libarchive.3 │ │ │ ├── libarchive_internals.3 │ │ │ ├── mtree.5 │ │ │ └── tar.5 │ │ ├── mdoc2man.awk │ │ ├── mdoc2wiki.awk │ │ ├── pdf │ │ │ ├── Makefile │ │ │ ├── archive_entry.3.pdf │ │ │ ├── archive_read.3.pdf │ │ │ ├── archive_read_disk.3.pdf │ │ │ ├── archive_util.3.pdf │ │ │ ├── archive_write.3.pdf │ │ │ ├── archive_write_disk.3.pdf │ │ │ ├── bsdcpio.1.pdf │ │ │ ├── bsdtar.1.pdf │ │ │ ├── cpio.5.pdf │ │ │ ├── libarchive-formats.5.pdf │ │ │ ├── libarchive.3.pdf │ │ │ ├── libarchive_internals.3.pdf │ │ │ ├── mtree.5.pdf │ │ │ └── tar.5.pdf │ │ ├── text │ │ │ ├── Makefile │ │ │ ├── archive_entry.3.txt │ │ │ ├── archive_read.3.txt │ │ │ ├── archive_read_disk.3.txt │ │ │ ├── archive_util.3.txt │ │ │ ├── archive_write.3.txt │ │ │ ├── archive_write_disk.3.txt │ │ │ ├── bsdcpio.1.txt │ │ │ ├── bsdtar.1.txt │ │ │ ├── cpio.5.txt │ │ │ ├── libarchive-formats.5.txt │ │ │ ├── libarchive.3.txt │ │ │ ├── libarchive_internals.3.txt │ │ │ ├── mtree.5.txt │ │ │ └── tar.5.txt │ │ ├── update.sh │ │ └── wiki │ │ │ ├── Makefile │ │ │ ├── ManPageArchiveEntry3.wiki │ │ │ ├── ManPageArchiveRead3.wiki │ │ │ ├── ManPageArchiveReadDisk3.wiki │ │ │ ├── ManPageArchiveUtil3.wiki │ │ │ ├── ManPageArchiveWrite3.wiki │ │ │ ├── ManPageArchiveWriteDisk3.wiki │ │ │ ├── ManPageBsdcpio1.wiki │ │ │ ├── ManPageBsdtar1.wiki │ │ │ ├── ManPageCpio5.wiki │ │ │ ├── ManPageLibarchive3.wiki │ │ │ ├── ManPageLibarchiveFormats5.wiki │ │ │ ├── ManPageLibarchiveInternals3.wiki │ │ │ ├── ManPageMtree5.wiki │ │ │ └── ManPageTar5.wiki │ ├── examples │ │ ├── minitar │ │ │ ├── README │ │ │ ├── minitar.c │ │ │ ├── tree.c │ │ │ └── tree.h │ │ ├── tarfilter.c │ │ └── untar.c │ ├── libarchive │ │ ├── CMakeLists.txt │ │ ├── archive.h │ │ ├── archive_check_magic.c │ │ ├── archive_crc32.h │ │ ├── archive_endian.h │ │ ├── archive_entry.3 │ │ ├── archive_entry.c │ │ ├── archive_entry.h │ │ ├── archive_entry_copy_bhfi.c │ │ ├── archive_entry_copy_stat.c │ │ ├── archive_entry_link_resolver.c │ │ ├── archive_entry_private.h │ │ ├── archive_entry_stat.c │ │ ├── archive_entry_strmode.c │ │ ├── archive_entry_xattr.c │ │ ├── archive_hash.h │ │ ├── archive_platform.h │ │ ├── archive_private.h │ │ ├── archive_read.3 │ │ ├── archive_read.c │ │ ├── archive_read_data_into_fd.c │ │ ├── archive_read_disk.3 │ │ ├── archive_read_disk.c │ │ ├── archive_read_disk_entry_from_file.c │ │ ├── archive_read_disk_private.h │ │ ├── archive_read_disk_set_standard_lookup.c │ │ ├── archive_read_extract.c │ │ ├── archive_read_open_fd.c │ │ ├── archive_read_open_file.c │ │ ├── archive_read_open_filename.c │ │ ├── archive_read_open_memory.c │ │ ├── archive_read_private.h │ │ ├── archive_read_support_compression_all.c │ │ ├── archive_read_support_compression_bzip2.c │ │ ├── archive_read_support_compression_compress.c │ │ ├── archive_read_support_compression_gzip.c │ │ ├── archive_read_support_compression_none.c │ │ ├── archive_read_support_compression_program.c │ │ ├── archive_read_support_compression_rpm.c │ │ ├── archive_read_support_compression_uu.c │ │ ├── archive_read_support_compression_xz.c │ │ ├── archive_read_support_format_all.c │ │ ├── archive_read_support_format_ar.c │ │ ├── archive_read_support_format_cpio.c │ │ ├── archive_read_support_format_empty.c │ │ ├── archive_read_support_format_iso9660.c │ │ ├── archive_read_support_format_mtree.c │ │ ├── archive_read_support_format_raw.c │ │ ├── archive_read_support_format_tar.c │ │ ├── archive_read_support_format_xar.c │ │ ├── archive_read_support_format_zip.c │ │ ├── archive_string.c │ │ ├── archive_string.h │ │ ├── archive_string_sprintf.c │ │ ├── archive_util.3 │ │ ├── archive_util.c │ │ ├── archive_virtual.c │ │ ├── archive_windows.c │ │ ├── archive_windows.h │ │ ├── archive_write.3 │ │ ├── archive_write.c │ │ ├── archive_write_disk.3 │ │ ├── archive_write_disk.c │ │ ├── archive_write_disk_private.h │ │ ├── archive_write_disk_set_standard_lookup.c │ │ ├── archive_write_open_fd.c │ │ ├── archive_write_open_file.c │ │ ├── archive_write_open_filename.c │ │ ├── archive_write_open_memory.c │ │ ├── archive_write_private.h │ │ ├── archive_write_set_compression_bzip2.c │ │ ├── archive_write_set_compression_compress.c │ │ ├── archive_write_set_compression_gzip.c │ │ ├── archive_write_set_compression_none.c │ │ ├── archive_write_set_compression_program.c │ │ ├── archive_write_set_compression_xz.c │ │ ├── archive_write_set_format.c │ │ ├── archive_write_set_format_ar.c │ │ ├── archive_write_set_format_by_name.c │ │ ├── archive_write_set_format_cpio.c │ │ ├── archive_write_set_format_cpio_newc.c │ │ ├── archive_write_set_format_mtree.c │ │ ├── archive_write_set_format_pax.c │ │ ├── archive_write_set_format_shar.c │ │ ├── archive_write_set_format_ustar.c │ │ ├── archive_write_set_format_zip.c │ │ ├── config_freebsd.h │ │ ├── cpio.5 │ │ ├── filter_fork.c │ │ ├── filter_fork.h │ │ ├── filter_fork_windows.c │ │ ├── libarchive-formats.5 │ │ ├── libarchive.3 │ │ ├── libarchive_internals.3 │ │ ├── mtree.5 │ │ ├── tar.5 │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── list.h │ │ │ ├── main.c │ │ │ ├── read_open_memory.c │ │ │ ├── test.h │ │ │ ├── test_acl_basic.c │ │ │ ├── test_acl_freebsd.c │ │ │ ├── test_acl_pax.c │ │ │ ├── test_archive_api_feature.c │ │ │ ├── test_bad_fd.c │ │ │ ├── test_compat_bzip2.c │ │ │ ├── test_compat_bzip2_1.tbz.uu │ │ │ ├── test_compat_bzip2_2.tbz.uu │ │ │ ├── test_compat_cpio.c │ │ │ ├── test_compat_cpio_1.cpio.uu │ │ │ ├── test_compat_gtar.c │ │ │ ├── test_compat_gtar_1.tar.uu │ │ │ ├── test_compat_gzip.c │ │ │ ├── test_compat_gzip_1.tgz.uu │ │ │ ├── test_compat_gzip_2.tgz.uu │ │ │ ├── test_compat_lzma.c │ │ │ ├── test_compat_lzma_1.tlz.uu │ │ │ ├── test_compat_lzma_2.tlz.uu │ │ │ ├── test_compat_lzma_3.tlz.uu │ │ │ ├── test_compat_solaris_tar_acl.c │ │ │ ├── test_compat_solaris_tar_acl.tar.uu │ │ │ ├── test_compat_tar_hardlink.c │ │ │ ├── test_compat_tar_hardlink_1.tar.uu │ │ │ ├── test_compat_xz.c │ │ │ ├── test_compat_xz_1.txz.uu │ │ │ ├── test_compat_zip.c │ │ │ ├── test_compat_zip_1.zip.uu │ │ │ ├── test_empty_write.c │ │ │ ├── test_entry.c │ │ │ ├── test_entry_strmode.c │ │ │ ├── test_extattr_freebsd.c │ │ │ ├── test_fuzz.c │ │ │ ├── test_fuzz_1.iso.Z.uu │ │ │ ├── test_link_resolver.c │ │ │ ├── test_open_fd.c │ │ │ ├── test_open_file.c │ │ │ ├── test_open_filename.c │ │ │ ├── test_pax_filename_encoding.c │ │ │ ├── test_pax_filename_encoding.tar.uu │ │ │ ├── test_read_compress_program.c │ │ │ ├── test_read_data_large.c │ │ │ ├── test_read_disk.c │ │ │ ├── test_read_disk_entry_from_file.c │ │ │ ├── test_read_extract.c │ │ │ ├── test_read_file_nonexistent.c │ │ │ ├── test_read_format_ar.ar.uu │ │ │ ├── test_read_format_ar.c │ │ │ ├── test_read_format_cpio_bin.c │ │ │ ├── test_read_format_cpio_bin_Z.c │ │ │ ├── test_read_format_cpio_bin_be.c │ │ │ ├── test_read_format_cpio_bin_be.cpio.uu │ │ │ ├── test_read_format_cpio_bin_bz2.c │ │ │ ├── test_read_format_cpio_bin_gz.c │ │ │ ├── test_read_format_cpio_bin_lzma.c │ │ │ ├── test_read_format_cpio_bin_xz.c │ │ │ ├── test_read_format_cpio_odc.c │ │ │ ├── test_read_format_cpio_svr4_bzip2_rpm.c │ │ │ ├── test_read_format_cpio_svr4_bzip2_rpm.rpm.uu │ │ │ ├── test_read_format_cpio_svr4_gzip.c │ │ │ ├── test_read_format_cpio_svr4_gzip_rpm.c │ │ │ ├── test_read_format_cpio_svr4_gzip_rpm.rpm.uu │ │ │ ├── test_read_format_cpio_svr4c_Z.c │ │ │ ├── test_read_format_empty.c │ │ │ ├── test_read_format_gtar_gz.c │ │ │ ├── test_read_format_gtar_lzma.c │ │ │ ├── test_read_format_gtar_sparse.c │ │ │ ├── test_read_format_gtar_sparse_1_13.tar.uu │ │ │ ├── test_read_format_gtar_sparse_1_17.tar.uu │ │ │ ├── test_read_format_gtar_sparse_1_17_posix00.tar.uu │ │ │ ├── test_read_format_gtar_sparse_1_17_posix01.tar.uu │ │ │ ├── test_read_format_gtar_sparse_1_17_posix10.tar.uu │ │ │ ├── test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu │ │ │ ├── test_read_format_iso.iso.Z.uu │ │ │ ├── test_read_format_iso_gz.c │ │ │ ├── test_read_format_iso_joliet.iso.Z.uu │ │ │ ├── test_read_format_iso_joliet_long.iso.Z.uu │ │ │ ├── test_read_format_iso_joliet_rockridge.iso.Z.uu │ │ │ ├── test_read_format_iso_multi_extent.c │ │ │ ├── test_read_format_iso_multi_extent.iso.Z.uu │ │ │ ├── test_read_format_iso_rockridge.iso.Z.uu │ │ │ ├── test_read_format_iso_rockridge_ce.iso.Z.uu │ │ │ ├── test_read_format_iso_rockridge_new.iso.Z.uu │ │ │ ├── test_read_format_iso_rockridge_rr_moved.iso.Z.uu │ │ │ ├── test_read_format_iso_zisofs.iso.Z.uu │ │ │ ├── test_read_format_isojoliet_bz2.c │ │ │ ├── test_read_format_isojoliet_long.c │ │ │ ├── test_read_format_isojoliet_rr.c │ │ │ ├── test_read_format_isorr_bz2.c │ │ │ ├── test_read_format_isorr_ce.c │ │ │ ├── test_read_format_isorr_new_bz2.c │ │ │ ├── test_read_format_isorr_rr_moved.c │ │ │ ├── test_read_format_isozisofs_bz2.c │ │ │ ├── test_read_format_mtree.c │ │ │ ├── test_read_format_mtree.mtree.uu │ │ │ ├── test_read_format_pax_bz2.c │ │ │ ├── test_read_format_raw.c │ │ │ ├── test_read_format_raw.data.Z.uu │ │ │ ├── test_read_format_raw.data.uu │ │ │ ├── test_read_format_tar.c │ │ │ ├── test_read_format_tar_empty_filename.c │ │ │ ├── test_read_format_tar_empty_filename.tar.uu │ │ │ ├── test_read_format_tbz.c │ │ │ ├── test_read_format_tgz.c │ │ │ ├── test_read_format_tlz.c │ │ │ ├── test_read_format_txz.c │ │ │ ├── test_read_format_tz.c │ │ │ ├── test_read_format_xar.c │ │ │ ├── test_read_format_zip.c │ │ │ ├── test_read_format_zip.zip.uu │ │ │ ├── test_read_large.c │ │ │ ├── test_read_pax_truncated.c │ │ │ ├── test_read_position.c │ │ │ ├── test_read_truncated.c │ │ │ ├── test_read_uu.c │ │ │ ├── test_tar_filenames.c │ │ │ ├── test_tar_large.c │ │ │ ├── test_ustar_filenames.c │ │ │ ├── test_write_compress.c │ │ │ ├── test_write_compress_bzip2.c │ │ │ ├── test_write_compress_gzip.c │ │ │ ├── test_write_compress_lzma.c │ │ │ ├── test_write_compress_program.c │ │ │ ├── test_write_compress_xz.c │ │ │ ├── test_write_disk.c │ │ │ ├── test_write_disk_failures.c │ │ │ ├── test_write_disk_hardlink.c │ │ │ ├── test_write_disk_perms.c │ │ │ ├── test_write_disk_secure.c │ │ │ ├── test_write_disk_sparse.c │ │ │ ├── test_write_disk_symlink.c │ │ │ ├── test_write_disk_times.c │ │ │ ├── test_write_format_ar.c │ │ │ ├── test_write_format_cpio.c │ │ │ ├── test_write_format_cpio_empty.c │ │ │ ├── test_write_format_cpio_newc.c │ │ │ ├── test_write_format_cpio_odc.c │ │ │ ├── test_write_format_mtree.c │ │ │ ├── test_write_format_pax.c │ │ │ ├── test_write_format_shar_empty.c │ │ │ ├── test_write_format_tar.c │ │ │ ├── test_write_format_tar_empty.c │ │ │ ├── test_write_format_tar_ustar.c │ │ │ ├── test_write_format_zip.c │ │ │ ├── test_write_format_zip_empty.c │ │ │ ├── test_write_format_zip_no_compression.c │ │ │ └── test_write_open_memory.c │ ├── libarchive_fe │ │ ├── err.c │ │ ├── lafe_err.h │ │ ├── lafe_platform.h │ │ ├── line_reader.c │ │ ├── line_reader.h │ │ ├── matching.c │ │ ├── matching.h │ │ ├── pathmatch.c │ │ └── pathmatch.h │ └── tar │ │ ├── CMakeLists.txt │ │ ├── bsdtar.1 │ │ ├── bsdtar.c │ │ ├── bsdtar.h │ │ ├── bsdtar_platform.h │ │ ├── bsdtar_windows.c │ │ ├── bsdtar_windows.h │ │ ├── cmdline.c │ │ ├── config_freebsd.h │ │ ├── getdate.c │ │ ├── read.c │ │ ├── subst.c │ │ ├── test │ │ ├── CMakeLists.txt │ │ ├── list.h │ │ ├── main.c │ │ ├── test.h │ │ ├── test_0.c │ │ ├── test_basic.c │ │ ├── test_copy.c │ │ ├── test_empty_mtree.c │ │ ├── test_getdate.c │ │ ├── test_help.c │ │ ├── test_option_T_upper.c │ │ ├── test_option_q.c │ │ ├── test_option_r.c │ │ ├── test_option_s.c │ │ ├── test_patterns.c │ │ ├── test_patterns_2.tar.uu │ │ ├── test_patterns_3.tar.uu │ │ ├── test_patterns_4.tar.uu │ │ ├── test_stdio.c │ │ ├── test_strip_components.c │ │ ├── test_symlink_dir.c │ │ ├── test_version.c │ │ └── test_windows.c │ │ ├── tree.c │ │ ├── tree.h │ │ ├── util.c │ │ └── write.c ├── xcodeconfig │ ├── base.xcconfig │ ├── executables.xcconfig │ └── libs.xcconfig └── xcodescripts │ ├── create_dylib_symlinks.sh │ ├── create_tar_symlinks.sh │ ├── fix_opensource_license.sh │ ├── install_opensource_versions.sh │ ├── install_tests.sh │ └── rename_man_pages.sh ├── libarchive_ios ├── libarchive_ios.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── holzschu.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── holzschu.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── libarchive_ios │ ├── Info.plist │ └── libarchive_ios.h ├── libc_replacement.c ├── libinfo ├── APPLE_LICENSE ├── Libinfo.xcodeproj │ └── project.pbxproj ├── dns.subproj │ ├── herror.c │ ├── res_comp.c │ └── res_query.c ├── gen.subproj │ ├── configuration_profile.c │ ├── configuration_profile.h │ ├── ether_addr.c │ ├── gethostbyname.3 │ ├── getifaddrs.3 │ ├── getifaddrs.c │ ├── getifmaddrs.3 │ ├── getifmaddrs.c │ ├── getipnodebyname.3 │ ├── getnetent.3 │ ├── getprotoent.3 │ ├── getservent.3 │ ├── if_indextoname.3 │ ├── if_indextoname.c │ ├── if_nameindex.c │ ├── if_nametoindex.c │ ├── ifaddrs.h │ ├── inet6_opt_init.3 │ ├── inet6_option_space.3 │ ├── inet6_rth_space.3 │ ├── inet6_rthdr_space.3 │ ├── ip6opt.c │ ├── map_v4v6.c │ ├── rthdr.c │ └── vars.c ├── lookup.subproj │ ├── aliasdb.h │ ├── bootparams.5 │ ├── bootparams.h │ ├── cache_module.c │ ├── ds_module.c │ ├── file_module.c │ ├── gai_strerror.3 │ ├── getaddrinfo.3 │ ├── getfsent.3 │ ├── getgrent.3 │ ├── getgrouplist.3 │ ├── getnameinfo.3 │ ├── getnameinfo_link.c │ ├── getnetgrent.3 │ ├── getpwent.3 │ ├── grp.h │ ├── ils.c │ ├── ils.h │ ├── initgroups.3 │ ├── kvbuf.c │ ├── kvbuf.h │ ├── libinfo.c │ ├── libinfo.h │ ├── libinfo_muser.h │ ├── mdns_module.c │ ├── muser_module.c │ ├── netdb.h │ ├── netdb_async.h │ ├── printerdb.h │ ├── pwd.h │ ├── search_module.c │ ├── si_data.c │ ├── si_data.h │ ├── si_getaddrinfo.c │ ├── si_module.c │ ├── si_module.h │ ├── thread_data.c │ └── thread_data.h ├── membership.subproj │ ├── mbr_check_membership.3 │ ├── mbr_uid_to_uuid.3 │ ├── membership.c │ ├── membership.h │ ├── membershipPriv.h │ └── ntsid.h ├── nis.subproj │ ├── getdomainname.c │ ├── getnetgrent.c │ ├── innetgr.c │ ├── setdomainname.c │ ├── xdr_domainname.c │ ├── xdr_keydat.c │ ├── xdr_mapname.c │ ├── xdr_peername.c │ ├── xdr_valdat.c │ ├── xdr_ypbind_binding.c │ ├── xdr_ypbind_resp.c │ ├── xdr_ypbind_resptype.c │ ├── xdr_ypbind_setdom.c │ ├── xdr_ypmaplist.c │ ├── xdr_ypreq_key.c │ ├── xdr_ypreq_nokey.c │ ├── xdr_ypresp_all.c │ ├── xdr_ypresp_key_val.c │ ├── xdr_ypresp_maplist.c │ ├── xdr_ypresp_master.c │ ├── xdr_ypresp_order.c │ ├── xdr_ypresp_val.c │ ├── xdr_ypstat.c │ ├── yp.8 │ ├── yp_all.3 │ ├── yp_all.c │ ├── yp_bind.3 │ ├── yp_bind.c │ ├── yp_first.3 │ ├── yp_first.c │ ├── yp_get_default_domain.3 │ ├── yp_get_default_domain.c │ ├── yp_maplist.c │ ├── yp_master.3 │ ├── yp_master.c │ ├── yp_match.3 │ ├── yp_next.3 │ ├── yp_order.3 │ ├── yp_order.c │ ├── yp_prot.h │ ├── yp_unbind.3 │ ├── ypclnt.3 │ ├── ypclnt.h │ ├── yperr_string.3 │ ├── yperr_string.c │ ├── ypinternal.h │ ├── ypmatch_cache.c │ ├── yppasswdd_xdr.c │ ├── ypprot_err.3 │ └── ypprot_err.c ├── rpc.subproj │ ├── DISCLAIMER │ ├── Makefile.inc │ ├── README │ ├── auth.h │ ├── auth_none.c │ ├── auth_unix.c │ ├── auth_unix.h │ ├── authunix_prot.c │ ├── bindresvport.3 │ ├── bindresvport.c │ ├── clnt.h │ ├── clnt_generic.c │ ├── clnt_perror.c │ ├── clnt_raw.c │ ├── clnt_simple.c │ ├── clnt_tcp.c │ ├── clnt_udp.c │ ├── get_myaddress.c │ ├── getrpcent.3 │ ├── getrpcent.c │ ├── getrpcport.3 │ ├── getrpcport.c │ ├── pmap_clnt.c │ ├── pmap_clnt.h │ ├── pmap_getmaps.c │ ├── pmap_getport.c │ ├── pmap_prot.c │ ├── pmap_prot.h │ ├── pmap_prot2.c │ ├── pmap_rmt.c │ ├── pmap_rmt.h │ ├── pmap_wakeup.c │ ├── pmap_wakeup.h │ ├── rpc.3 │ ├── rpc.h │ ├── rpc_callmsg.c │ ├── rpc_commondata.c │ ├── rpc_dtablesize.c │ ├── rpc_msg.h │ ├── rpc_prot.c │ ├── svc.c │ ├── svc.h │ ├── svc_auth.c │ ├── svc_auth.h │ ├── svc_auth_unix.c │ ├── svc_raw.c │ ├── svc_run.c │ ├── svc_simple.c │ ├── svc_tcp.c │ ├── svc_udp.c │ ├── types.h │ ├── xdr.3 │ ├── xdr.c │ ├── xdr.h │ ├── xdr_array.c │ ├── xdr_float.c │ ├── xdr_mem.c │ ├── xdr_rec.c │ ├── xdr_reference.c │ ├── xdr_sizeof.c │ └── xdr_stdio.c ├── util.subproj │ ├── hosts.equiv.5 │ ├── hton.c │ ├── rcmd.3 │ └── rcmd.c └── xcodescripts │ ├── Libinfo.xcconfig │ └── install_files.sh ├── libutil ├── ExtentManager.cpp ├── ExtentManager.h ├── getmntopts.3 ├── getmntopts.c ├── humanize_number.3 ├── humanize_number.c ├── libutil.exports ├── libutil.h ├── libutil.plist ├── libutil.txt ├── libutil.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── mntopts.h ├── pidfile.3 ├── pidfile.c ├── realhostname.3 ├── realhostname.c ├── realhostname_sa.3 ├── reexec_to_match_kernel.3 ├── reexec_to_match_kernel.c ├── trimdomain.3 ├── trimdomain.c ├── tzlink.c ├── tzlink.h ├── tzlink_internal.h ├── tzlinkd │ ├── com.apple.tzlinkd.plist │ ├── com.apple.tzlinkd.sb │ ├── entitlements.plist │ └── tzlinkd.c ├── wipefs.3 ├── wipefs.cpp ├── wipefs.h └── xcconfigs │ ├── base.xcconfig │ ├── test.xcconfig │ └── tzlinkd.xcconfig ├── ncurses_dll.h ├── shell ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Info.plist └── shell.h ├── shell_cmds ├── alias │ ├── alias.1 │ ├── builtin.1 │ └── generic.sh ├── apply │ ├── apply.1 │ └── apply.c ├── basename │ ├── basename │ ├── basename.1 │ ├── basename.c │ └── dirname.1 ├── chroot │ ├── chroot.8 │ └── chroot.c ├── date │ ├── date.1 │ ├── date.c │ ├── date.plist.part │ ├── extern.h │ ├── netdate.c │ ├── vary.c │ └── vary.h ├── dirname │ ├── dirname │ └── dirname.c ├── echo │ ├── echo.1 │ └── echo.c ├── env │ ├── env.1 │ ├── env.c │ ├── envopts.c │ └── envopts.h ├── expr │ ├── err.c │ ├── expr │ ├── expr.1 │ └── expr.y ├── false │ ├── false │ ├── false.1 │ ├── false.c │ └── false.sh ├── find │ ├── extern.h │ ├── find.1 │ ├── find.c │ ├── find.h │ ├── find.plist.part │ ├── function.c │ ├── getdate.y │ ├── ls.c │ ├── main.c │ ├── misc.c │ ├── operator.c │ └── option.c ├── getopt │ ├── getopt │ ├── getopt.1 │ └── getopt.c ├── hexdump │ ├── conv.c │ ├── display.c │ ├── hexdump │ ├── hexdump.1 │ ├── hexdump.c │ ├── hexdump.h │ ├── hexsyntax.c │ ├── od.1 │ ├── odsyntax.c │ └── parse.c ├── hostname │ ├── hostname.1 │ └── hostname.c ├── id │ ├── groups.1 │ ├── id.1 │ ├── id.c │ ├── open_directory.c │ ├── open_directory.h │ └── whoami.1 ├── jot │ ├── jot │ ├── jot.1 │ └── jot.c ├── kill │ ├── kill.1 │ ├── kill.c │ └── kill.plist.part ├── killall │ ├── killall.1 │ └── killall.c ├── lastcomm │ ├── lastcomm.1 │ ├── lastcomm.c │ └── pathnames.h ├── locate │ ├── bigram │ │ ├── locate.bigram.8 │ │ └── locate.bigram.c │ ├── code │ │ ├── locate.code.8 │ │ └── locate.code.c │ └── locate │ │ ├── com.apple.locate.plist │ │ ├── concatdb.sh │ │ ├── fastfind.c │ │ ├── locate.1 │ │ ├── locate.c │ │ ├── locate.h │ │ ├── locate.rc │ │ ├── locate.updatedb.8 │ │ ├── mklocatedb.sh │ │ ├── pathnames.h │ │ ├── updatedb.sh │ │ └── util.c ├── logname │ ├── logname.1 │ └── logname.c ├── mktemp │ ├── mktemp │ ├── mktemp.1 │ ├── mktemp.c │ └── mktemp.plist.part ├── nice │ ├── nice.1 │ └── nice.c ├── nohup │ ├── nohup.1 │ └── nohup.c ├── path_helper │ ├── path_helper.8 │ └── path_helper.c ├── printenv │ ├── printenv.1 │ └── printenv.c ├── printf │ ├── printf │ ├── printf.1 │ ├── printf.c │ ├── printf.plist.part │ └── tests │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── legacy_test.sh │ │ └── regress.sh ├── pwd │ ├── pwd.1 │ └── pwd.c ├── renice │ ├── renice.8 │ └── renice.c ├── script │ ├── script.1 │ ├── script.c │ └── script.plist.part ├── seq │ ├── seq │ ├── seq.1 │ └── seq.c ├── sh │ ├── Makefile │ ├── Makefile.depend │ ├── TOUR │ ├── alias.c │ ├── alias.h │ ├── arith.h │ ├── arith_yacc.c │ ├── arith_yacc.h │ ├── arith_yylex.c │ ├── bltin │ │ ├── bltin.h │ │ └── echo.c │ ├── builtins.def │ ├── cd.c │ ├── cd.h │ ├── error.c │ ├── error.h │ ├── eval.c │ ├── eval.h │ ├── exec.c │ ├── exec.h │ ├── expand.c │ ├── expand.h │ ├── funcs │ │ ├── cmv │ │ ├── dirs │ │ ├── login │ │ ├── newgrp │ │ ├── popd │ │ ├── pushd │ │ └── suspend │ ├── histedit.c │ ├── input.c │ ├── input.h │ ├── jobs.c │ ├── jobs.h │ ├── mail.c │ ├── mail.h │ ├── main.c │ ├── main.h │ ├── memalloc.c │ ├── memalloc.h │ ├── miscbltin.c │ ├── mkbuiltins │ ├── mknodes.c │ ├── mksyntax.c │ ├── mktokens │ ├── myhistedit.h │ ├── mystring.c │ ├── mystring.h │ ├── nodes.c.pat │ ├── nodetypes │ ├── options.c │ ├── options.h │ ├── output.c │ ├── output.h │ ├── parser.c │ ├── parser.h │ ├── redir.c │ ├── redir.h │ ├── sh.1 │ ├── sh.plist.part │ ├── shell.h │ ├── show.c │ ├── show.h │ ├── tests │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── builtins │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── alias.0 │ │ │ ├── alias.0.stdout │ │ │ ├── alias.1 │ │ │ ├── alias.1.stderr │ │ │ ├── alias3.0 │ │ │ ├── alias3.0.stdout │ │ │ ├── alias4.0 │ │ │ ├── break1.0 │ │ │ ├── break2.0 │ │ │ ├── break2.0.stdout │ │ │ ├── break3.0 │ │ │ ├── break4.4 │ │ │ ├── break5.4 │ │ │ ├── break6.0 │ │ │ ├── builtin1.0 │ │ │ ├── case1.0 │ │ │ ├── case10.0 │ │ │ ├── case11.0 │ │ │ ├── case12.0 │ │ │ ├── case13.0 │ │ │ ├── case14.0 │ │ │ ├── case15.0 │ │ │ ├── case16.0 │ │ │ ├── case17.0 │ │ │ ├── case18.0 │ │ │ ├── case19.0 │ │ │ ├── case2.0 │ │ │ ├── case20.0 │ │ │ ├── case3.0 │ │ │ ├── case4.0 │ │ │ ├── case5.0 │ │ │ ├── case6.0 │ │ │ ├── case7.0 │ │ │ ├── case8.0 │ │ │ ├── case9.0 │ │ │ ├── cd1.0 │ │ │ ├── cd2.0 │ │ │ ├── cd3.0 │ │ │ ├── cd4.0 │ │ │ ├── cd5.0 │ │ │ ├── cd6.0 │ │ │ ├── cd7.0 │ │ │ ├── cd8.0 │ │ │ ├── cd9.0 │ │ │ ├── cd9.0.stdout │ │ │ ├── command1.0 │ │ │ ├── command10.0 │ │ │ ├── command11.0 │ │ │ ├── command12.0 │ │ │ ├── command2.0 │ │ │ ├── command3.0 │ │ │ ├── command3.0.stdout │ │ │ ├── command4.0 │ │ │ ├── command5.0 │ │ │ ├── command5.0.stdout │ │ │ ├── command6.0 │ │ │ ├── command6.0.stdout │ │ │ ├── command7.0 │ │ │ ├── command8.0 │ │ │ ├── command9.0 │ │ │ ├── dot1.0 │ │ │ ├── dot2.0 │ │ │ ├── dot3.0 │ │ │ ├── dot4.0 │ │ │ ├── echo1.0 │ │ │ ├── echo2.0 │ │ │ ├── echo3.0 │ │ │ ├── eval1.0 │ │ │ ├── eval2.0 │ │ │ ├── eval3.0 │ │ │ ├── eval4.0 │ │ │ ├── eval5.0 │ │ │ ├── eval6.0 │ │ │ ├── eval7.0 │ │ │ ├── eval8.7 │ │ │ ├── exec1.0 │ │ │ ├── exec2.0 │ │ │ ├── exit1.0 │ │ │ ├── exit2.8 │ │ │ ├── exit3.0 │ │ │ ├── export1.0 │ │ │ ├── fc1.0 │ │ │ ├── fc2.0 │ │ │ ├── for1.0 │ │ │ ├── for2.0 │ │ │ ├── for3.0 │ │ │ ├── getopts1.0 │ │ │ ├── getopts1.0.stdout │ │ │ ├── getopts10.0 │ │ │ ├── getopts2.0 │ │ │ ├── getopts2.0.stdout │ │ │ ├── getopts3.0 │ │ │ ├── getopts4.0 │ │ │ ├── getopts5.0 │ │ │ ├── getopts6.0 │ │ │ ├── getopts7.0 │ │ │ ├── getopts8.0 │ │ │ ├── getopts8.0.stdout │ │ │ ├── getopts9.0 │ │ │ ├── getopts9.0.stdout │ │ │ ├── hash1.0 │ │ │ ├── hash1.0.stdout │ │ │ ├── hash2.0 │ │ │ ├── hash2.0.stdout │ │ │ ├── hash3.0 │ │ │ ├── hash3.0.stdout │ │ │ ├── hash4.0 │ │ │ ├── jobid1.0 │ │ │ ├── jobid2.0 │ │ │ ├── kill1.0 │ │ │ ├── kill2.0 │ │ │ ├── lineno.0 │ │ │ ├── lineno.0.stdout │ │ │ ├── lineno2.0 │ │ │ ├── lineno3.0 │ │ │ ├── lineno3.0.stdout │ │ │ ├── local1.0 │ │ │ ├── local2.0 │ │ │ ├── local3.0 │ │ │ ├── local4.0 │ │ │ ├── local5.0 │ │ │ ├── local6.0 │ │ │ ├── local7.0 │ │ │ ├── locale1.0 │ │ │ ├── printf1.0 │ │ │ ├── printf2.0 │ │ │ ├── printf3.0 │ │ │ ├── printf4.0 │ │ │ ├── read1.0 │ │ │ ├── read1.0.stdout │ │ │ ├── read2.0 │ │ │ ├── read3.0 │ │ │ ├── read3.0.stdout │ │ │ ├── read4.0 │ │ │ ├── read4.0.stdout │ │ │ ├── read5.0 │ │ │ ├── read6.0 │ │ │ ├── read7.0 │ │ │ ├── read8.0 │ │ │ ├── read9.0 │ │ │ ├── return1.0 │ │ │ ├── return2.1 │ │ │ ├── return3.1 │ │ │ ├── return4.0 │ │ │ ├── return5.0 │ │ │ ├── return6.4 │ │ │ ├── return7.4 │ │ │ ├── return8.0 │ │ │ ├── set1.0 │ │ │ ├── set2.0 │ │ │ ├── set3.0 │ │ │ ├── trap1.0 │ │ │ ├── trap10.0 │ │ │ ├── trap11.0 │ │ │ ├── trap12.0 │ │ │ ├── trap13.0 │ │ │ ├── trap14.0 │ │ │ ├── trap15.0 │ │ │ ├── trap16.0 │ │ │ ├── trap17.0 │ │ │ ├── trap2.0 │ │ │ ├── trap3.0 │ │ │ ├── trap4.0 │ │ │ ├── trap5.0 │ │ │ ├── trap6.0 │ │ │ ├── trap7.0 │ │ │ ├── trap8.0 │ │ │ ├── trap9.0 │ │ │ ├── type1.0 │ │ │ ├── type1.0.stderr │ │ │ ├── type2.0 │ │ │ ├── type3.0 │ │ │ ├── unalias.0 │ │ │ ├── var-assign.0 │ │ │ ├── var-assign2.0 │ │ │ ├── wait1.0 │ │ │ ├── wait10.0 │ │ │ ├── wait2.0 │ │ │ ├── wait3.0 │ │ │ ├── wait4.0 │ │ │ ├── wait5.0 │ │ │ ├── wait6.0 │ │ │ ├── wait7.0 │ │ │ ├── wait8.0 │ │ │ └── wait9.127 │ │ ├── errors │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── assignment-error1.0 │ │ │ ├── assignment-error2.0 │ │ │ ├── backquote-error1.0 │ │ │ ├── backquote-error2.0 │ │ │ ├── bad-binary1.126 │ │ │ ├── bad-keyword1.0 │ │ │ ├── bad-parm-exp1.0 │ │ │ ├── bad-parm-exp2.2 │ │ │ ├── bad-parm-exp2.2.stderr │ │ │ ├── bad-parm-exp3.2 │ │ │ ├── bad-parm-exp3.2.stderr │ │ │ ├── bad-parm-exp4.2 │ │ │ ├── bad-parm-exp4.2.stderr │ │ │ ├── bad-parm-exp5.2 │ │ │ ├── bad-parm-exp5.2.stderr │ │ │ ├── bad-parm-exp6.2 │ │ │ ├── bad-parm-exp6.2.stderr │ │ │ ├── bad-parm-exp7.0 │ │ │ ├── bad-parm-exp8.0 │ │ │ ├── option-error.0 │ │ │ ├── redirection-error.0 │ │ │ ├── redirection-error2.2 │ │ │ ├── redirection-error3.0 │ │ │ ├── redirection-error4.0 │ │ │ ├── redirection-error5.0 │ │ │ ├── redirection-error6.0 │ │ │ ├── redirection-error7.0 │ │ │ └── write-error1.0 │ │ ├── execution │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── bg1.0 │ │ │ ├── bg10.0 │ │ │ ├── bg10.0.stdout │ │ │ ├── bg2.0 │ │ │ ├── bg3.0 │ │ │ ├── bg4.0 │ │ │ ├── bg5.0 │ │ │ ├── bg6.0 │ │ │ ├── bg6.0.stdout │ │ │ ├── bg7.0 │ │ │ ├── bg8.0 │ │ │ ├── bg9.0 │ │ │ ├── fork1.0 │ │ │ ├── fork2.0 │ │ │ ├── fork3.0 │ │ │ ├── func1.0 │ │ │ ├── func2.0 │ │ │ ├── func3.0 │ │ │ ├── hash1.0 │ │ │ ├── int-cmd1.0 │ │ │ ├── killed1.0 │ │ │ ├── killed2.0 │ │ │ ├── not1.0 │ │ │ ├── not2.0 │ │ │ ├── path1.0 │ │ │ ├── redir1.0 │ │ │ ├── redir2.0 │ │ │ ├── redir3.0 │ │ │ ├── redir4.0 │ │ │ ├── redir5.0 │ │ │ ├── redir6.0 │ │ │ ├── redir7.0 │ │ │ ├── set-n1.0 │ │ │ ├── set-n2.0 │ │ │ ├── set-n3.0 │ │ │ ├── set-n4.0 │ │ │ ├── set-x1.0 │ │ │ ├── set-x2.0 │ │ │ ├── set-x3.0 │ │ │ ├── set-x4.0 │ │ │ ├── shellproc1.0 │ │ │ ├── subshell1.0 │ │ │ ├── subshell1.0.stdout │ │ │ ├── subshell2.0 │ │ │ ├── subshell3.0 │ │ │ ├── subshell4.0 │ │ │ ├── unknown1.0 │ │ │ └── var-assign1.0 │ │ ├── expansion │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── arith1.0 │ │ │ ├── arith10.0 │ │ │ ├── arith11.0 │ │ │ ├── arith12.0 │ │ │ ├── arith13.0 │ │ │ ├── arith14.0 │ │ │ ├── arith2.0 │ │ │ ├── arith3.0 │ │ │ ├── arith4.0 │ │ │ ├── arith5.0 │ │ │ ├── arith6.0 │ │ │ ├── arith7.0 │ │ │ ├── arith8.0 │ │ │ ├── arith9.0 │ │ │ ├── assign1.0 │ │ │ ├── cmdsubst1.0 │ │ │ ├── cmdsubst10.0 │ │ │ ├── cmdsubst11.0 │ │ │ ├── cmdsubst12.0 │ │ │ ├── cmdsubst13.0 │ │ │ ├── cmdsubst14.0 │ │ │ ├── cmdsubst15.0 │ │ │ ├── cmdsubst16.0 │ │ │ ├── cmdsubst17.0 │ │ │ ├── cmdsubst2.0 │ │ │ ├── cmdsubst3.0 │ │ │ ├── cmdsubst4.0 │ │ │ ├── cmdsubst5.0 │ │ │ ├── cmdsubst6.0 │ │ │ ├── cmdsubst7.0 │ │ │ ├── cmdsubst8.0 │ │ │ ├── cmdsubst9.0 │ │ │ ├── export1.0 │ │ │ ├── export2.0 │ │ │ ├── export3.0 │ │ │ ├── heredoc1.0 │ │ │ ├── heredoc2.0 │ │ │ ├── ifs1.0 │ │ │ ├── ifs2.0 │ │ │ ├── ifs3.0 │ │ │ ├── ifs4.0 │ │ │ ├── ifs5.0 │ │ │ ├── ifs6.0 │ │ │ ├── ifs7.0 │ │ │ ├── length1.0 │ │ │ ├── length2.0 │ │ │ ├── length3.0 │ │ │ ├── length4.0 │ │ │ ├── length5.0 │ │ │ ├── length6.0 │ │ │ ├── length7.0 │ │ │ ├── length8.0 │ │ │ ├── local1.0 │ │ │ ├── local2.0 │ │ │ ├── pathname1.0 │ │ │ ├── pathname2.0 │ │ │ ├── pathname3.0 │ │ │ ├── pathname4.0 │ │ │ ├── pathname5.0 │ │ │ ├── pathname6.0 │ │ │ ├── plus-minus1.0 │ │ │ ├── plus-minus2.0 │ │ │ ├── plus-minus3.0 │ │ │ ├── plus-minus4.0 │ │ │ ├── plus-minus5.0 │ │ │ ├── plus-minus6.0 │ │ │ ├── plus-minus7.0 │ │ │ ├── plus-minus8.0 │ │ │ ├── question1.0 │ │ │ ├── readonly1.0 │ │ │ ├── redir1.0 │ │ │ ├── set-u1.0 │ │ │ ├── set-u2.0 │ │ │ ├── set-u3.0 │ │ │ ├── tilde1.0 │ │ │ ├── tilde2.0 │ │ │ ├── trim1.0 │ │ │ ├── trim2.0 │ │ │ ├── trim3.0 │ │ │ ├── trim4.0 │ │ │ ├── trim5.0 │ │ │ ├── trim6.0 │ │ │ ├── trim7.0 │ │ │ ├── trim8.0 │ │ │ └── trim9.0 │ │ ├── functional_test.sh │ │ ├── parameters │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── env1.0 │ │ │ ├── exitstatus1.0 │ │ │ ├── ifs1.0 │ │ │ ├── mail1.0 │ │ │ ├── mail2.0 │ │ │ ├── optind1.0 │ │ │ ├── optind2.0 │ │ │ ├── positional1.0 │ │ │ ├── positional2.0 │ │ │ ├── positional3.0 │ │ │ ├── positional4.0 │ │ │ ├── positional5.0 │ │ │ ├── positional6.0 │ │ │ ├── positional7.0 │ │ │ ├── positional8.0 │ │ │ ├── positional9.0 │ │ │ ├── pwd1.0 │ │ │ └── pwd2.0 │ │ ├── parser │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── alias1.0 │ │ │ ├── alias10.0 │ │ │ ├── alias11.0 │ │ │ ├── alias12.0 │ │ │ ├── alias13.0 │ │ │ ├── alias14.0 │ │ │ ├── alias15.0 │ │ │ ├── alias15.0.stdout │ │ │ ├── alias2.0 │ │ │ ├── alias3.0 │ │ │ ├── alias4.0 │ │ │ ├── alias5.0 │ │ │ ├── alias6.0 │ │ │ ├── alias7.0 │ │ │ ├── alias8.0 │ │ │ ├── alias9.0 │ │ │ ├── and-pipe-not.0 │ │ │ ├── case1.0 │ │ │ ├── case2.0 │ │ │ ├── comment1.0 │ │ │ ├── comment2.42 │ │ │ ├── dollar-quote1.0 │ │ │ ├── dollar-quote10.0 │ │ │ ├── dollar-quote11.0 │ │ │ ├── dollar-quote12.0 │ │ │ ├── dollar-quote13.0 │ │ │ ├── dollar-quote2.0 │ │ │ ├── dollar-quote3.0 │ │ │ ├── dollar-quote4.0 │ │ │ ├── dollar-quote5.0 │ │ │ ├── dollar-quote6.0 │ │ │ ├── dollar-quote7.0 │ │ │ ├── dollar-quote8.0 │ │ │ ├── dollar-quote9.0 │ │ │ ├── empty-braces1.0 │ │ │ ├── empty-cmd1.0 │ │ │ ├── for1.0 │ │ │ ├── for2.0 │ │ │ ├── func1.0 │ │ │ ├── func2.0 │ │ │ ├── func3.0 │ │ │ ├── heredoc1.0 │ │ │ ├── heredoc10.0 │ │ │ ├── heredoc11.0 │ │ │ ├── heredoc12.0 │ │ │ ├── heredoc13.0 │ │ │ ├── heredoc2.0 │ │ │ ├── heredoc3.0 │ │ │ ├── heredoc4.0 │ │ │ ├── heredoc5.0 │ │ │ ├── heredoc6.0 │ │ │ ├── heredoc7.0 │ │ │ ├── heredoc8.0 │ │ │ ├── heredoc9.0 │ │ │ ├── line-cont1.0 │ │ │ ├── line-cont10.0 │ │ │ ├── line-cont11.0 │ │ │ ├── line-cont2.0 │ │ │ ├── line-cont3.0 │ │ │ ├── line-cont4.0 │ │ │ ├── line-cont5.0 │ │ │ ├── line-cont6.0 │ │ │ ├── line-cont7.0 │ │ │ ├── line-cont8.0 │ │ │ ├── line-cont9.0 │ │ │ ├── no-space1.0 │ │ │ ├── no-space2.0 │ │ │ ├── nul1.0 │ │ │ ├── only-redir1.0 │ │ │ ├── only-redir2.0 │ │ │ ├── only-redir3.0 │ │ │ ├── only-redir4.0 │ │ │ ├── pipe-not1.0 │ │ │ ├── set-v1.0 │ │ │ ├── set-v1.0.stderr │ │ │ └── var-assign1.0 │ │ └── set-e │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── and1.0 │ │ │ ├── and2.1 │ │ │ ├── and3.0 │ │ │ ├── and4.0 │ │ │ ├── background1.0 │ │ │ ├── cmd1.0 │ │ │ ├── cmd2.1 │ │ │ ├── elif1.0 │ │ │ ├── elif2.0 │ │ │ ├── eval1.0 │ │ │ ├── eval2.1 │ │ │ ├── for1.0 │ │ │ ├── func1.0 │ │ │ ├── func2.1 │ │ │ ├── if1.0 │ │ │ ├── if2.0 │ │ │ ├── if3.0 │ │ │ ├── not1.0 │ │ │ ├── not2.0 │ │ │ ├── or1.0 │ │ │ ├── or2.0 │ │ │ ├── or3.1 │ │ │ ├── pipe1.1 │ │ │ ├── pipe2.0 │ │ │ ├── return1.0 │ │ │ ├── semi1.1 │ │ │ ├── semi2.1 │ │ │ ├── subshell1.0 │ │ │ ├── subshell2.1 │ │ │ ├── until1.0 │ │ │ ├── until2.0 │ │ │ ├── until3.0 │ │ │ ├── while1.0 │ │ │ ├── while2.0 │ │ │ └── while3.0 │ ├── trap.c │ ├── trap.h │ ├── var.c │ └── var.h ├── shell_cmds.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── shlock │ ├── shlock.1 │ └── shlock.c ├── sleep │ ├── sleep.1 │ └── sleep.c ├── su │ ├── su.1 │ ├── su.c │ └── su.pam ├── systime │ ├── systime.1 │ └── systime.c ├── tee │ ├── tee.1 │ └── tee.c ├── test │ ├── [.1 │ ├── test.1 │ ├── test.c │ ├── test.plist.part │ └── tests │ │ ├── Makefile │ │ └── legacy_test.sh ├── time │ ├── time.1 │ └── time.c ├── tmp_commands │ ├── basename │ ├── dirname │ ├── false │ ├── getopt │ ├── hexdump │ ├── jot │ ├── list.txt │ ├── mktemp │ ├── printf │ ├── seq │ └── which ├── true │ ├── true.1 │ ├── true.c │ └── true.sh ├── uname │ ├── uname.1 │ └── uname.c ├── users │ ├── users.1 │ └── users.c ├── w │ ├── extern.h │ ├── fmt.c │ ├── pr_time.c │ ├── proc_compare.c │ ├── uptime.1 │ ├── w.1 │ └── w.c ├── what │ ├── what.1 │ └── what.c ├── whereis │ ├── whereis.1 │ └── whereis.c ├── which │ ├── which │ ├── which.1 │ └── which.c ├── who │ ├── utmpentry.c │ ├── utmpentry.h │ ├── who.1 │ └── who.c ├── xargs │ ├── pathnames.h │ ├── strnsubst.c │ ├── xargs.1 │ └── xargs.c ├── xcconfigs │ ├── base.xcconfig │ └── sh.xcconfig ├── xcodescripts │ ├── builtins-manpages.txt │ ├── builtins.txt │ └── install-files.sh └── yes │ ├── yes.1 │ └── yes.c ├── shell_cmds_ios ├── jsc.swift ├── open.m ├── source.swift └── wasm3.c ├── ssh-agent ├── auth-options.c ├── auth.c ├── auth2-chall.c ├── auth2.c ├── gss-serv.c ├── kexgexs.c ├── servconf.c ├── serverloop.c ├── session.c ├── sftp-realpath.c ├── sftp-server.c ├── srclimit.c ├── ssh_agent.h ├── sshd.c └── y.tab.c ├── ssh_cmd copy-Info.plist ├── ssh_cmd copy2-Info.plist ├── ssh_cmd copy3-Info.plist ├── ssh_cmd ├── Info.plist └── ssh_cmd.h ├── ssh_keygen ├── addr.c ├── addr.h ├── addrmatch.c ├── atomicio.c ├── atomicio.h ├── audit.h ├── auth-options.h ├── auth-pam.h ├── auth-passwd.c ├── auth-rhosts.c ├── auth-sia.h ├── auth.h ├── auth2-gss.c ├── auth2-hostbased.c ├── auth2-kbdint.c ├── auth2-none.c ├── auth2-passwd.c ├── auth2-pubkey.c ├── authfd.c ├── authfd.h ├── authfile.c ├── authfile.h ├── bitmap.c ├── bitmap.h ├── canohost.c ├── canohost.h ├── chacha.c ├── chacha.h ├── channels.c ├── channels.h ├── cipher-aesctr.h ├── cipher-chachapoly.c ├── cipher-chachapoly.h ├── cipher.c ├── cipher.h ├── clientloop.c ├── clientloop.h ├── compat.c ├── compat.h ├── config.h ├── crypto_api.h ├── defines.h ├── dh.c ├── dh.h ├── digest-openssl.c ├── digest.h ├── dispatch.c ├── dispatch.h ├── dns.c ├── dns.h ├── ed25519.c ├── entropy.c ├── entropy.h ├── fatal.c ├── fe25519.c ├── fe25519.h ├── ge25519.c ├── ge25519.h ├── ge25519_base.data ├── groupaccess.h ├── gss-genr.c ├── hash.c ├── hmac.c ├── hmac.h ├── hostfile.c ├── hostfile.h ├── includes.h ├── kex.c ├── kex.h ├── kexc25519.c ├── kexdh.c ├── kexecdh.c ├── kexgen.c ├── kexgex.c ├── kexgexc.c ├── kexsntrup761x25519.c ├── krl.c ├── krl.h ├── log.c ├── log.h ├── loginrec.h ├── mac.c ├── mac.h ├── match.c ├── match.h ├── md5crypt.h ├── misc.c ├── misc.h ├── moduli.c ├── monitor.h ├── monitor_fdpass.c ├── monitor_fdpass.h ├── monitor_wrap.h ├── msg.c ├── msg.h ├── mux.c ├── myproposal.h ├── nchan.c ├── openbsd-compat │ ├── Makefile.in │ ├── arc4random.c │ ├── base64.c │ ├── base64.h │ ├── basename.c │ ├── bcrypt_pbkdf.c │ ├── bindresvport.c │ ├── blf.h │ ├── blowfish.c │ ├── bsd-asprintf.c │ ├── bsd-closefrom.c │ ├── bsd-cygwin_util.c │ ├── bsd-cygwin_util.h │ ├── bsd-err.c │ ├── bsd-getpeereid.c │ ├── bsd-misc.c │ ├── bsd-misc.h │ ├── bsd-nextstep.c │ ├── bsd-nextstep.h │ ├── bsd-openpty.c │ ├── bsd-poll.c │ ├── bsd-poll.h │ ├── bsd-setres_id.c │ ├── bsd-setres_id.h │ ├── bsd-signal.h │ ├── bsd-snprintf.c │ ├── bsd-statvfs.c │ ├── bsd-statvfs.h │ ├── bsd-waitpid.c │ ├── bsd-waitpid.h │ ├── chacha_private.h │ ├── charclass.h │ ├── daemon.c │ ├── dirname.c │ ├── explicit_bzero.c │ ├── fake-rfc2553.c │ ├── fake-rfc2553.h │ ├── fmt_scaled.c │ ├── freezero.c │ ├── getcwd.c │ ├── getgrouplist.c │ ├── getopt.h │ ├── getopt_long.c │ ├── getrrsetbyname-ldns.c │ ├── getrrsetbyname.c │ ├── getrrsetbyname.h │ ├── glob.c │ ├── glob.h │ ├── inet_aton.c │ ├── inet_ntoa.c │ ├── inet_ntop.c │ ├── kludge-fd_set.c │ ├── libressl-api-compat.c │ ├── md5.c │ ├── md5.h │ ├── mktemp.c │ ├── openbsd-compat.h │ ├── openssl-compat.c │ ├── openssl-compat.h │ ├── port-aix.c │ ├── port-aix.h │ ├── port-irix.c │ ├── port-irix.h │ ├── port-linux.c │ ├── port-linux.h │ ├── port-net.c │ ├── port-net.h │ ├── port-solaris.c │ ├── port-solaris.h │ ├── port-uw.c │ ├── port-uw.h │ ├── pwcache.c │ ├── readpassphrase.c │ ├── readpassphrase.h │ ├── reallocarray.c │ ├── recallocarray.c │ ├── regress │ │ ├── Makefile.in │ │ ├── closefromtest.c │ │ ├── opensslvertest.c │ │ ├── snprintftest.c │ │ ├── strduptest.c │ │ └── strtonumtest.c │ ├── rresvport.c │ ├── setenv.c │ ├── setproctitle.c │ ├── sha1.c │ ├── sha1.h │ ├── sha2.c │ ├── sha2.h │ ├── sigact.c │ ├── sigact.h │ ├── strcasestr.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strmode.c │ ├── strnlen.c │ ├── strptime.c │ ├── strsep.c │ ├── strtoll.c │ ├── strtonum.c │ ├── strtoul.c │ ├── strtoull.c │ ├── sys-queue.h │ ├── sys-tree.h │ ├── timingsafe_bcmp.c │ ├── vis.c │ ├── vis.h │ └── xcrypt.c ├── packet.c ├── packet.h ├── pathnames.h ├── pkcs11.h ├── platform-misc.c ├── platform-pledge.c ├── platform-tracing.c ├── platform.h ├── poly1305.c ├── poly1305.h ├── progressmeter.c ├── progressmeter.h ├── readconf.c ├── readconf.h ├── readpass.c ├── rijndael.h ├── sc25519.c ├── sc25519.h ├── scp.c ├── servconf.h ├── serverloop.h ├── session.h ├── sftp-client.c ├── sftp-client.h ├── sftp-common.c ├── sftp-common.h ├── sftp-glob.c ├── sftp.c ├── sftp.h ├── sk-api.h ├── smult_curve25519_ref.c ├── srclimit.h ├── ssh-add.c ├── ssh-agent.c ├── ssh-dss.c ├── ssh-ecdsa-sk.c ├── ssh-ecdsa.c ├── ssh-ed25519-sk.c ├── ssh-ed25519.c ├── ssh-gss.h ├── ssh-keygen.c ├── ssh-pkcs11.c ├── ssh-pkcs11.h ├── ssh-rsa.c ├── ssh-sandbox.h ├── ssh-sk-client.c ├── ssh-sk.c ├── ssh-sk.h ├── ssh.c ├── ssh.h ├── ssh2.h ├── ssh_api.h ├── sshbuf-getput-basic.c ├── sshbuf-getput-crypto.c ├── sshbuf-io.c ├── sshbuf-misc.c ├── sshbuf.c ├── sshbuf.h ├── sshconnect.c ├── sshconnect.h ├── sshconnect2.c ├── ssherr.c ├── ssherr.h ├── sshkey.c ├── sshkey.h ├── sshlogin.h ├── sshpty.h ├── sshsig.c ├── sshsig.h ├── sshtty.c ├── ttymodes.c ├── ttymodes.h ├── uidswap.c ├── uidswap.h ├── umac.c ├── umac.h ├── umac128.c ├── utf8.c ├── utf8.h ├── verify.c ├── version.h ├── xmalloc.c └── xmalloc.h ├── ssh_main.c ├── tar ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Info.plist └── tar.h ├── termcap.h ├── text ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Info.plist └── text.h ├── text_cmds ├── banner │ ├── banner.6 │ └── banner.c ├── cat │ ├── cat.1 │ └── cat.c ├── col │ ├── README │ ├── col.1 │ └── col.c ├── colrm │ ├── colrm.1 │ └── colrm.c ├── column │ ├── column.1 │ └── column.c ├── comm │ ├── comm.1 │ └── comm.c ├── csplit │ ├── csplit.1 │ └── csplit.c ├── cut │ ├── cut.1 │ └── cut.c ├── ed │ ├── POSIX │ ├── README │ ├── buf.c │ ├── cbc.c │ ├── ed.1 │ ├── ed.h │ ├── glbl.c │ ├── io.c │ ├── main.c │ ├── re.c │ ├── red.1 │ ├── sub.c │ ├── test │ │ ├── =.err │ │ ├── README │ │ ├── TODO │ │ ├── a.r │ │ ├── a.t │ │ ├── a1.err │ │ ├── a2.err │ │ ├── addr.r │ │ ├── addr.t │ │ ├── addr1.err │ │ ├── addr2.err │ │ ├── ascii.d.uu │ │ ├── ascii.r.uu │ │ ├── ascii.t │ │ ├── bang1.err │ │ ├── bang1.r │ │ ├── bang1.t │ │ ├── bang2.err │ │ ├── c.r │ │ ├── c.t │ │ ├── c1.err │ │ ├── c2.err │ │ ├── ckscripts.sh │ │ ├── d.err │ │ ├── d.r │ │ ├── d.t │ │ ├── e1.err │ │ ├── e1.r │ │ ├── e1.t │ │ ├── e2.err │ │ ├── e2.r │ │ ├── e2.t │ │ ├── e3.err │ │ ├── e3.r │ │ ├── e3.t │ │ ├── e4.r │ │ ├── e4.t │ │ ├── f1.err │ │ ├── f2.err │ │ ├── g1.err │ │ ├── g1.r │ │ ├── g1.t │ │ ├── g2.err │ │ ├── g2.r │ │ ├── g2.t │ │ ├── g3.err │ │ ├── g3.r │ │ ├── g3.t │ │ ├── g4.r │ │ ├── g4.t │ │ ├── g5.r │ │ ├── g5.t │ │ ├── h.err │ │ ├── i.r │ │ ├── i.t │ │ ├── i1.err │ │ ├── i2.err │ │ ├── i3.err │ │ ├── j.r │ │ ├── j.t │ │ ├── k.r │ │ ├── k.t │ │ ├── k1.err │ │ ├── k2.err │ │ ├── k3.err │ │ ├── k4.err │ │ ├── l.r │ │ ├── l.t │ │ ├── m.err │ │ ├── m.r │ │ ├── m.t │ │ ├── mkscripts.sh │ │ ├── n.r │ │ ├── n.t │ │ ├── nl.err │ │ ├── nl1.r │ │ ├── nl1.t │ │ ├── nl2.r │ │ ├── nl2.t │ │ ├── p.r │ │ ├── p.t │ │ ├── q.r │ │ ├── q.t │ │ ├── q1.err │ │ ├── r1.err │ │ ├── r1.r │ │ ├── r1.t │ │ ├── r2.err │ │ ├── r2.r │ │ ├── r2.t │ │ ├── r3.r │ │ ├── r3.t │ │ ├── s1.err │ │ ├── s1.r │ │ ├── s1.t │ │ ├── s10.err │ │ ├── s2.err │ │ ├── s2.r │ │ ├── s2.t │ │ ├── s3.err │ │ ├── s3.r │ │ ├── s3.t │ │ ├── s4.err │ │ ├── s5.err │ │ ├── s6.err │ │ ├── s7.err │ │ ├── s8.err │ │ ├── s9.err │ │ ├── t.r │ │ ├── t1.err │ │ ├── t1.r │ │ ├── t1.t │ │ ├── t2.err │ │ ├── t2.r │ │ ├── t2.t │ │ ├── u.err │ │ ├── u.r │ │ ├── u.t │ │ ├── v.r │ │ ├── v.t │ │ ├── w.r │ │ ├── w.t │ │ ├── w1.err │ │ ├── w2.err │ │ ├── w3.err │ │ ├── x.err │ │ └── z.err │ └── undo.c ├── ee │ ├── Changes │ ├── Makefile │ ├── README.ee │ ├── create.make │ ├── ee.1 │ ├── ee.c │ ├── ee.i18n.guide │ ├── ee.msg │ ├── ee_version.h │ ├── genstr │ ├── make.default │ ├── new_curse.c │ └── new_curse.h ├── expand │ ├── expand.1 │ ├── expand.c │ └── xcodescripts │ │ └── link-man-pages.sh ├── fmt │ ├── fmt.1 │ └── fmt.c ├── fold │ ├── fold.1 │ └── fold.c ├── grep │ ├── file.c │ ├── grep.1 │ ├── grep.c │ ├── grep.h │ ├── queue.c │ └── util.c ├── head │ ├── head.1 │ └── head.c ├── join │ ├── join.1 │ └── join.c ├── lam │ ├── lam.1 │ └── lam.c ├── look │ ├── look.1 │ ├── look.c │ └── pathnames.h ├── md5 │ ├── CommonDigestSPI.h │ ├── commoncrypto.c │ ├── commoncrypto.h │ ├── md5.1 │ └── md5.c ├── nl │ ├── nl.1 │ └── nl.c ├── paste │ ├── paste.1 │ └── paste.c ├── pr │ ├── egetopt.c │ ├── extern.h │ ├── pr.1 │ ├── pr.c │ └── pr.h ├── rev │ ├── rev.1 │ └── rev.c ├── rs │ ├── rs.1 │ └── rs.c ├── sed │ ├── POSIX │ ├── TEST │ │ ├── hanoi.sed │ │ ├── math.sed │ │ └── sed.test │ ├── compile.c │ ├── defs.h │ ├── extern.h │ ├── main.c │ ├── misc.c │ ├── process.c │ └── sed.1 ├── sort │ ├── bwstring.c │ ├── bwstring.h │ ├── coll.c │ ├── coll.h │ ├── commoncrypto.c │ ├── commoncrypto.h │ ├── file.c │ ├── file.h │ ├── mem.c │ ├── mem.h │ ├── nls │ │ ├── C.msg │ │ └── hu_HU.ISO8859-2.msg │ ├── radixsort.c │ ├── radixsort.h │ ├── sort.1.in │ ├── sort.c │ ├── sort.h │ ├── vsort.c │ └── vsort.h ├── split │ ├── split.1 │ └── split.c ├── tail │ ├── extern.h │ ├── forward.c │ ├── misc.c │ ├── read.c │ ├── reverse.c │ ├── tail.1 │ └── tail.c ├── text_cmds.plist ├── text_cmds.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── tr │ ├── cmap.c │ ├── cmap.h │ ├── cset.c │ ├── cset.h │ ├── extern.h │ ├── str.c │ ├── tr.1 │ └── tr.c ├── ul │ ├── ul.1 │ └── ul.c ├── unexpand │ └── unexpand.c ├── uniq │ ├── uniq.1 │ └── uniq.c ├── unvis │ ├── unvis.1 │ └── unvis.c ├── vis │ ├── extern.h │ ├── foldit.c │ ├── vis.1 │ └── vis.c ├── wc │ ├── wc.1 │ └── wc.c ├── xcconfigs │ ├── base.xcconfig │ ├── ee.xcconfig │ ├── grep.xcconfig │ └── sort.xcconfig └── xcodescripts │ ├── grep_variant_links.sh │ ├── install-opensource.sh │ └── install-sort-man.sh └── text_cmds_grp └── say.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/README.md -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/a-format.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | printf("%a\n", 42) 3 | } 4 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/a-format.ok: -------------------------------------------------------------------------------- 1 | 0x1.5p+5 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/concat-assign-same.bad: -------------------------------------------------------------------------------- 1 | 22345 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/concat-assign-same.ok: -------------------------------------------------------------------------------- 1 | 12345 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/fmt-overflow.awk: -------------------------------------------------------------------------------- 1 | BEGIN { OFMT = "%.1000f"; print 1.25; } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/fs-overflow.ok: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/getline-numeric.in: -------------------------------------------------------------------------------- 1 | 120 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/missing-precision.awk: -------------------------------------------------------------------------------- 1 | BEGIN { printf("%*s"); } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/negative-nf.awk: -------------------------------------------------------------------------------- 1 | BEGIN { NF = -5; } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/nf-self-assign.bad: -------------------------------------------------------------------------------- 1 | a b c 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/nf-self-assign.ok: -------------------------------------------------------------------------------- 1 | a,b,c 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-fs.ok: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 4 4 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-output-seps.bad: -------------------------------------------------------------------------------- 1 | a b 2 | d e 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-output-seps.ok: -------------------------------------------------------------------------------- 1 | a1b2d1e2 -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-rs.bad: -------------------------------------------------------------------------------- 1 | a1b1c1d 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-rs.ok: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-subsep.bad: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/numeric-subsep.ok: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/ofs-rebuild.bad: -------------------------------------------------------------------------------- 1 | a<>b<>3333<>d<>e<>f<>g 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/ofs-rebuild.ok: -------------------------------------------------------------------------------- 1 | a:b:3333:d:e:f:g 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/pfile-overflow.awk: -------------------------------------------------------------------------------- 1 | \ -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/rs_underflow.awk: -------------------------------------------------------------------------------- 1 | BEGIN { RS="zx" } { print $1 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/split-fs-from-array.ok: -------------------------------------------------------------------------------- 1 | 4 l phanti 2 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/bugs-fixed/unary-plus.ok: -------------------------------------------------------------------------------- 1 | 0 2 | 43.1235 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/awk_639_cmds-a.tmp: -------------------------------------------------------------------------------- 1 | { 2 | gsub(/[[=a=]]/, "") 3 | print 4 | } 5 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/awk_639_cmds-or.tmp: -------------------------------------------------------------------------------- 1 | { 2 | gsub(/[ab|c]/, "") 3 | print 4 | } 5 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/ind: -------------------------------------------------------------------------------- 1 | exec sed '/./s/^/ /' $* 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/multibyte-onlysomembchars: -------------------------------------------------------------------------------- 1 | Üäöß 2 | ßöä 3 | 4 | 5 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.1: -------------------------------------------------------------------------------- 1 | { print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.10: -------------------------------------------------------------------------------- 1 | $1 == $4 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.11: -------------------------------------------------------------------------------- 1 | /Asia/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.12: -------------------------------------------------------------------------------- 1 | $4 ~ /Asia/ { print $1 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.13: -------------------------------------------------------------------------------- 1 | $4 !~ /Asia/ {print $1 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.14: -------------------------------------------------------------------------------- 1 | /\$/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.15: -------------------------------------------------------------------------------- 1 | /\\/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.16: -------------------------------------------------------------------------------- 1 | /^.$/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.17: -------------------------------------------------------------------------------- 1 | $2 !~ /^[0-9]+$/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.18: -------------------------------------------------------------------------------- 1 | /(apple|cherry) (pie|tart)/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.2: -------------------------------------------------------------------------------- 1 | { print $1, $3 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.20: -------------------------------------------------------------------------------- 1 | $4 == "Asia" && $3 > 500 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.21a: -------------------------------------------------------------------------------- 1 | /Asia/ || /Africa/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.22: -------------------------------------------------------------------------------- 1 | $4 ~ /^(Asia|Europe)$/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.23: -------------------------------------------------------------------------------- 1 | /Canada/, /Brazil/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.25: -------------------------------------------------------------------------------- 1 | { printf "%10s %6.1f\n", $1, 1000 * $3 / $2 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.28: -------------------------------------------------------------------------------- 1 | { print NR ":" $0 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.29: -------------------------------------------------------------------------------- 1 | { gsub(/USA/, "United States"); print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.3: -------------------------------------------------------------------------------- 1 | { printf "[%10s] [%-16d]\n", $1, $3 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.30: -------------------------------------------------------------------------------- 1 | { print length, $0 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.32: -------------------------------------------------------------------------------- 1 | { $1 = substr($1, 1, 3); print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.34: -------------------------------------------------------------------------------- 1 | { $2 /= 1000; print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.37: -------------------------------------------------------------------------------- 1 | $1 "" == $2 "" 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.4: -------------------------------------------------------------------------------- 1 | { print NR, $0 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.40: -------------------------------------------------------------------------------- 1 | { for (i = 1; i <= NF; i++) 2 | print $i 3 | } 4 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.46: -------------------------------------------------------------------------------- 1 | { print $1 $2 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.49: -------------------------------------------------------------------------------- 1 | $1 == "include" { system("cat " $2) } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.6: -------------------------------------------------------------------------------- 1 | END { print NR } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.7: -------------------------------------------------------------------------------- 1 | $3 > 100 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.8: -------------------------------------------------------------------------------- 1 | $4 == "Asia" { print $1 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/p.9: -------------------------------------------------------------------------------- 1 | $1 >= "S" 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.0: -------------------------------------------------------------------------------- 1 | { print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.0a: -------------------------------------------------------------------------------- 1 | {i = i+1; print i, NR} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.1: -------------------------------------------------------------------------------- 1 | BEGIN {FS=":"} 2 | {print $1, $2, $3} 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.1.x: -------------------------------------------------------------------------------- 1 | {i="count" $1 $2; print i , $0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.2: -------------------------------------------------------------------------------- 1 | BEGIN {OFS="==="} 2 | {print $1, $2, $3} 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.2.x: -------------------------------------------------------------------------------- 1 | {i=2; j=$3; $1=i;print i,j,$1} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.4.x: -------------------------------------------------------------------------------- 1 | {i=$(1); print i} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.5.x: -------------------------------------------------------------------------------- 1 | {$(1) = "xxx"; print $1,$0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.6.x: -------------------------------------------------------------------------------- 1 | {print NF,$0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.cat1: -------------------------------------------------------------------------------- 1 | {print x $0} # should precede by zero 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.cat2: -------------------------------------------------------------------------------- 1 | {$1 = $1 "*"; print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.cmp: -------------------------------------------------------------------------------- 1 | $2 > $1 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.concat: -------------------------------------------------------------------------------- 1 | { x = $1; print x (++i) } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.count: -------------------------------------------------------------------------------- 1 | END { print NR } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.e: -------------------------------------------------------------------------------- 1 | $1 < 10 || $2 ~ /bwk/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.exit: -------------------------------------------------------------------------------- 1 | { print } 2 | $1 < 5000 { exit NR } 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f: -------------------------------------------------------------------------------- 1 | {print $2, $1} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f.x: -------------------------------------------------------------------------------- 1 | $1>0 {print $1, sqrt($1)} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f0: -------------------------------------------------------------------------------- 1 | $1 ~ /x/ {print $0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f1: -------------------------------------------------------------------------------- 1 | {$1 = 1; print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f2: -------------------------------------------------------------------------------- 1 | {$1 = 1; print $0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f3: -------------------------------------------------------------------------------- 1 | {$1 = NR; print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.f4: -------------------------------------------------------------------------------- 1 | {$1 = NR; print $0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.for: -------------------------------------------------------------------------------- 1 | { for (i=1; i<=NF; i++) 2 | print i, $i 3 | } 4 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.gsub: -------------------------------------------------------------------------------- 1 | {gsub(/[aeiou]/,"foo"); print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.gsub1: -------------------------------------------------------------------------------- 1 | {gsub(/$/,"x"); print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.if: -------------------------------------------------------------------------------- 1 | {if($1 || $2) print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.incr: -------------------------------------------------------------------------------- 1 | { ++i; --j; k++; l-- } 2 | END { print NR, i, j, k, l } 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.makef: -------------------------------------------------------------------------------- 1 | {$3 = 2*$1; print $1, $2, $3} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.match: -------------------------------------------------------------------------------- 1 | $2 ~ /ava|bwk/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.ofmt: -------------------------------------------------------------------------------- 1 | BEGIN {OFMT="%.5g"} 2 | {print $1+0} 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.ors: -------------------------------------------------------------------------------- 1 | BEGIN {ORS="abc"} 2 | {print $1, $2, $3} 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.pipe: -------------------------------------------------------------------------------- 1 | BEGIN {print "read /usr/bwk/awk/t.pipe" | "cat"} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.pp: -------------------------------------------------------------------------------- 1 | /a/,/b/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.re2: -------------------------------------------------------------------------------- 1 | /[a-z]()[0-9]/ 2 | !/^$/ 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.rec: -------------------------------------------------------------------------------- 1 | { print sqrt($1) } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.seqno: -------------------------------------------------------------------------------- 1 | {print NR, $0} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.split2: -------------------------------------------------------------------------------- 1 | { split ($0, x); print x[2], x[1] } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.sub1: -------------------------------------------------------------------------------- 1 | {sub(/.$/,"x"); print} 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.substr1: -------------------------------------------------------------------------------- 1 | NR % 2 { print substr($0, 0, -1) } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.vf3: -------------------------------------------------------------------------------- 1 | BEGIN { i=1; j=2 } 2 | {$i = $j; print} 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/t.x: -------------------------------------------------------------------------------- 1 | /x/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.01: -------------------------------------------------------------------------------- 1 | { print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.02: -------------------------------------------------------------------------------- 1 | { print NR, NF, $0 } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.02a: -------------------------------------------------------------------------------- 1 | { $2 = length($2); print } 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.03: -------------------------------------------------------------------------------- 1 | { s += length($2) } 2 | END { print s } 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.03a: -------------------------------------------------------------------------------- 1 | { s += $3 } 2 | END { print s } 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.04: -------------------------------------------------------------------------------- 1 | { for (i = NF; i > 0; i--) 2 | printf "%s ", $i 3 | } 4 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.07: -------------------------------------------------------------------------------- 1 | NF % 2 == 0 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.08: -------------------------------------------------------------------------------- 1 | length % 2 == 0 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.09: -------------------------------------------------------------------------------- 1 | ! /^./ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.10: -------------------------------------------------------------------------------- 1 | /.$/ 2 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.10a: -------------------------------------------------------------------------------- 1 | BEGIN { x = ".$" } 2 | $0 ~ x 3 | -------------------------------------------------------------------------------- /awk-awk-35/src/testdir/tt.11: -------------------------------------------------------------------------------- 1 | { print substr($0, 10,10) } 2 | -------------------------------------------------------------------------------- /awk/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /awk/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/awk/Info.plist -------------------------------------------------------------------------------- /awk/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/awk/awk.h -------------------------------------------------------------------------------- /bsd_diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_diff/Makefile -------------------------------------------------------------------------------- /bsd_diff/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_diff/diff.c -------------------------------------------------------------------------------- /bsd_diff/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_diff/diff.h -------------------------------------------------------------------------------- /bsd_find/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/Makefile -------------------------------------------------------------------------------- /bsd_find/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/extern.h -------------------------------------------------------------------------------- /bsd_find/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/find.c -------------------------------------------------------------------------------- /bsd_find/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/find.h -------------------------------------------------------------------------------- /bsd_find/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/ls.c -------------------------------------------------------------------------------- /bsd_find/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/main.c -------------------------------------------------------------------------------- /bsd_find/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/misc.c -------------------------------------------------------------------------------- /bsd_find/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/option.c -------------------------------------------------------------------------------- /bsd_find/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/bsd_find/y.tab.c -------------------------------------------------------------------------------- /curl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/Info.plist -------------------------------------------------------------------------------- /curl/README.APPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/README.APPLE -------------------------------------------------------------------------------- /curl/curl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/curl.plist -------------------------------------------------------------------------------- /curl/curl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/curl/CHANGES -------------------------------------------------------------------------------- /curl/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/curl/COPYING -------------------------------------------------------------------------------- /curl/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/curl/README -------------------------------------------------------------------------------- /curl/curl/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/curl/compile -------------------------------------------------------------------------------- /curl/curl/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/curl/curl/depcomp -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/10-at-a-time.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/altsvc.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/anyauthput.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/certinfo.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/chkspeed.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/cookie_interface.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/debug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/externalsocket.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/fileupload.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftp-wildcard.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpget.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpgetinfo.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpgetresp.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpsget.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpupload.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpuploadfrommem.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/ftpuploadresume.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/getinfo.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/getinmemory.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/getredirect.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/getreferrer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/headerapi.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http-post.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http2-download.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http2-pushinmemory.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http2-serverpush.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http2-upload.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http3-present.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/http3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/httpcustomheader.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/httpput-postfields.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/httpput.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/https.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-append.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-authzid.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-copy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-create.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-delete.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-examine.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-fetch.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-list.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-lsub.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-multi.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-noop.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-search.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-ssl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-store.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/imap-tls.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-app.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-debugcallback.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-double.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-formadd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-legacy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-post.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/multi-single.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/parseurl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/persistent.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-authzid.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-dele.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-list.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-multi.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-noop.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-retr.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-ssl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-stat.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-tls.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-top.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/pop3-uidl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/post-callback.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/postinmemory.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/postit2-formadd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/postit2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/progressfunc.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/protofeats.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/resolve.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/sendrecv.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/sepheaders.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/sftpget.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/sftpuploadresume.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/shared-connection-cache.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/simple.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/simplepost.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/simplessl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-authzid.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-expn.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-mail.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-mime.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-multi.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-ssl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-tls.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/smtp-vrfy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/sslbackend.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/url2file.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/examples/.deps/urlapi.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/docs/libcurl/curl_multi_socket_all.3: -------------------------------------------------------------------------------- 1 | .so man3/curl_multi_socket.3 2 | -------------------------------------------------------------------------------- /curl/curl/docs/libcurl/curl_strnequal.3: -------------------------------------------------------------------------------- 1 | .so man3/curl_strequal.3 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.checksrc: -------------------------------------------------------------------------------- 1 | enable STRERROR 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/curl_gethostname.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/fake_ntlm-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/getpart-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1502-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1502-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1503-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1503-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1504-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1504-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1505-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1505-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1521-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1539-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1539-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1543-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1596-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1596-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1917-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1917-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib1946-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib526-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib526-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib527-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib527-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib529-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib529-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib529-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib532-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib532-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib545-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib548-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib565-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib584-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib585-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib585-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib587-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib645-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib670-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib670-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib671-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib671-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib672-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/lib672-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-curl_multibyte.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-dynbuf.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-nonblock.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-strtoofft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-timediff.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-version_win32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurltool_la-warnless.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-altsvc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-amigaos.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-asyn-ares.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-asyn-thread.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-base64.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-bufq.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-bufref.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-c-hyper.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cf-h1-proxy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cf-h2-proxy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cf-haproxy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cf-https-connect.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cf-socket.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cfilters.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-conncache.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-connect.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-content_encoding.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-cookie.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_addrinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_des.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_endian.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_fnmatch.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_get_line.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_gethostname.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_log.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_memrchr.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_multibyte.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_ntlm_core.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_ntlm_wb.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_path.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_range.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_rtmp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_sasl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-curl_threads.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-dict.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-doh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-dynbuf.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-dynhds.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-easy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-easygetopt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-easyoptions.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-escape.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-file.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-fileinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-fopen.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-formdata.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-ftp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-ftplistparser.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-getenv.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-getinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-gopher.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hash.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-headers.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hmac.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hostasyn.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hostip.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hostip4.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hostip6.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hostsyn.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-hsts.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http_aws_sigv4.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http_chunks.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http_digest.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http_negotiate.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http_ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-http_proxy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-idn.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-if2ip.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-imap.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-inet_ntop.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-inet_pton.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-krb5.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-ldap.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-llist.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-md4.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-md5.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-memdebug.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-mime.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-mprintf.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-mqtt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-multi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-netrc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-nonblock.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-noproxy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-openldap.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-parsedate.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-pingpong.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-pop3.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-progress.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-psl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-rand.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-rename.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-rtsp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-select.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-sendf.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-setopt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-sha256.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-share.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-slist.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-smb.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-smtp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-socketpair.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-socks.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-socks_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-socks_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-speedcheck.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-splay.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-strcase.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-strdup.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-strerror.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-strtok.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-strtoofft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-system_win32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-telnet.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-tftp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-timediff.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-timeval.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-transfer.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-url.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-urlapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-version.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-version_win32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-warnless.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/libcurlu_la-ws.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-inet_pton.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/mqttd-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/resolve-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/rtspd-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-inet_pton.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sockfilt-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-inet_pton.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/socksd-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-inet_pton.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/sws-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-curl_multibyte.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-dynbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-memdebug.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-mprintf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-nonblock.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-strcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-strdup.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-strtoofft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-timediff.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.deps/tftpd-warnless.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for lib/curl_config.h 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-cleartext.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-cram.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-digest.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-digest_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-gsasl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-krb5_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-krb5_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-ntlm_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-oauth2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-spnego_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-spnego_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.deps/libcurlu_la-vauth.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vauth/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vquic/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vquic/.deps/libcurlu_la-curl_msh3.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vquic/.deps/libcurlu_la-curl_ngtcp2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vquic/.deps/libcurlu_la-curl_quiche.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vquic/.deps/libcurlu_la-vquic.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vquic/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vssh/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vssh/.deps/libcurlu_la-libssh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vssh/.deps/libcurlu_la-libssh2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vssh/.deps/libcurlu_la-wolfssh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vssh/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-bearssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-gskit.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-gtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-hostcheck.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-keylog.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-mbedtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-mbedtls_threadlock.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-nss.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-openssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-rustls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-schannel.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-schannel_verify.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-sectransp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-vtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-wolfssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.deps/libcurlu_la-x509asn1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/lib/vtls/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-slist_wc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_binmode.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_bname.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cb_dbg.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cb_hdr.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cb_prg.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cb_rea.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cb_see.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cb_wrt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_cfgable.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_dirhie.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_doswin.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_easysrc.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_filetime.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_findfile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_formparse.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_getparam.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_getpass.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_help.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_helpers.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_hugehelp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_libinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_listhelp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_main.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_msgs.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_operate.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_operhlp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_paramhlp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_parsecfg.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_progress.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_setopt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_sleep.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_stderr.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_strdup.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_urlglob.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_util.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_vms.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_writeout.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_writeout_json.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/src/.deps/libcurltool_la-tool_xattr.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/certs/Server-localhost-firstSAN-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/tests/certs/Server-localhost-lastSAN-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/tests/certs/Server-localhost-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/tests/certs/Server-localhost.nn-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/tests/certs/Server-localhost0h-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/tests/certs/stunnel-sv.dhp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /curl/curl/tests/http/clients/.deps/h2-download.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/http/clients/.deps/h2-serverpush.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/http/clients/.deps/ws-data.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/http/clients/.deps/ws-pingpong.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/chkhostname.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1156.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1301.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1500.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1501.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1502-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1502-lib1502.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1502-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1503-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1503-lib1502.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1503-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1504-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1504-lib1502.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1504-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1505-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1505-lib1502.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1505-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1506.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1507.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1508.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1509.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1510.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1511.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1512.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1513.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1514.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1515.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1517.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1518.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1520.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1521-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1521-lib1521.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1522.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1523.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1525.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1526.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1527.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1528.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1529.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1530.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1531.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1532.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1533.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1534.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1535.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1536.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1537.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1538.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1539-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1539-lib1514.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1539-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1540.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1542.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1543-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1543-lib1518.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1550.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1551.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1552.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1553.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1554.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1555.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1556.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1557.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1558.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1559.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1560.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1564.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1565.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1567.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1568.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1569.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1591.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1592.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1593.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1594.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1596-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1596-lib1594.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1596-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1597.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1662.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1903.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1905.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1906.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1907.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1908.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1910.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1911.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1912.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1913.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1915.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1916.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1917-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1917-lib1916.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1918.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1919.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1933.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1934.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1935.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1936.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1937.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1938.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1939.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1940.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1945.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1946-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1946-lib1940.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1947.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1948.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1955.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1956.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1957.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1958.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1959.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1960.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1970.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1971.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1972.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1973.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1974.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib1975.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2301.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2302.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2304.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2305.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2306.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2402.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib2502.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib3010.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib3025.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib3026.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib3027.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib3100.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib3101.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib500.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib501.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib502.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib503.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib504.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib505.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib506.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib507.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib508.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib509.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib510.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib511.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib512.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib513.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib514.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib515.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib516.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib517.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib518.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib519.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib520.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib521.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib523.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib524.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib525.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib526-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib526-lib526.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib526-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib527-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib527-lib526.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib527-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib529-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib529-lib525.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib529-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib530.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib532-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib532-lib526.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib532-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib533.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib537.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib539.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib540.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib541.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib542.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib543.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib544.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib545-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib545-lib544.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib547.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib548-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib548-lib547.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib549.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib552.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib553.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib554.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib555.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib556.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib557.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib558.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib559.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib560.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib562.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib564.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib565-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib565-lib510.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib566.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib567.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib568.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib569.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib570.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib571.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib572.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib573.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib574.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib575.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib576.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib578.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib579.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib582.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib583.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib584-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib584-lib589.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib585-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib585-lib500.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib585-testtrace.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib585-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib586.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib587-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib587-lib554.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib589.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib590.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib591.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib597.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib598.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib599.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib643.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib645-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib645-lib643.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib650.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib651.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib652.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib653.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib654.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib655.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib658.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib659.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib661.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib666.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib667.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib668.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib670-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib670-lib670.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib670-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib670.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib671-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib671-lib670.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib671-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib672-first.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib672-lib670.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib672-testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib674.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib676.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib677.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/lib678.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/libauthretry.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/libhostname_la-sethostname.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/libntlmconnect.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/libprereq.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/libstubgss_la-stub_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/testtrace.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/libtest/.deps/testutil.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/disabled-disabled.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/fake_ntlm-fake_ntlm.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/fake_ntlm-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/fake_ntlm-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/getpart-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/getpart-testpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/mqttd-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/mqttd-mqttd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/mqttd-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/resolve-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/resolve-resolve.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/resolve-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/rtspd-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/rtspd-rtspd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/rtspd-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/sockfilt-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/sockfilt-sockfilt.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/sockfilt-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/socksd-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/socksd-socksd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/socksd-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/sws-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/sws-sws.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/sws-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/tftpd-getpart.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/tftpd-tftpd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/server/.deps/tftpd-util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1300.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1302.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1303.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1304.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1305.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1307.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1308.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1309.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1323.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1330.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1394.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1395.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1396.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1397.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1398.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1399.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1600.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1601.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1602.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1603.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1604.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1605.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1606.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1607.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1608.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1609.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1610.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1611.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1612.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1614.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1620.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1621.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1650.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1651.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1652.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1653.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1654.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1655.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1660.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit1661.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit2600.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit2601.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit2602.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit2603.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /curl/curl/tests/unit/.deps/unit3200.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /file_cmds/cksum/sum.1: -------------------------------------------------------------------------------- 1 | .so man1/cksum.1 2 | -------------------------------------------------------------------------------- /file_cmds/compress/uncompress.1: -------------------------------------------------------------------------------- 1 | .so man1/compress.1 -------------------------------------------------------------------------------- /file_cmds/ln/link.1: -------------------------------------------------------------------------------- 1 | .so man1/ln.1 2 | -------------------------------------------------------------------------------- /file_cmds/rm/unlink.1: -------------------------------------------------------------------------------- 1 | .so man1/rm.1 2 | -------------------------------------------------------------------------------- /file_cmds/stat/readlink.1: -------------------------------------------------------------------------------- 1 | .so man1/stat.1 2 | -------------------------------------------------------------------------------- /files/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/files/files.h -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/getopt.c -------------------------------------------------------------------------------- /getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/getopt_long.c -------------------------------------------------------------------------------- /ios_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/ios_error.h -------------------------------------------------------------------------------- /ios_system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/ios_system.m -------------------------------------------------------------------------------- /less-34/less.1: -------------------------------------------------------------------------------- 1 | less/less.nro -------------------------------------------------------------------------------- /less-34/less.txt: -------------------------------------------------------------------------------- 1 | less/LICENSE -------------------------------------------------------------------------------- /less-34/lessecho.1: -------------------------------------------------------------------------------- 1 | less/lessecho.nro -------------------------------------------------------------------------------- /libarchive/libarchive/build/version: -------------------------------------------------------------------------------- 1 | 2008003 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_all.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_bind.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_first.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_get_default_domain.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_master.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_match.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_next.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_order.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yp_unbind.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/yperr_string.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libinfo/nis.subproj/ypprot_err.3: -------------------------------------------------------------------------------- 1 | .so man3/ypclnt.3 2 | -------------------------------------------------------------------------------- /libutil/xcconfigs/test.xcconfig: -------------------------------------------------------------------------------- 1 | INSTALL_PATH = /AppleInternal/Tests/libutil 2 | -------------------------------------------------------------------------------- /ncurses_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/ncurses_dll.h -------------------------------------------------------------------------------- /shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/shell/shell.h -------------------------------------------------------------------------------- /shell_cmds/alias/alias.1: -------------------------------------------------------------------------------- 1 | .so man1/builtin.1 2 | -------------------------------------------------------------------------------- /shell_cmds/basename/dirname.1: -------------------------------------------------------------------------------- 1 | .so man1/basename.1 2 | -------------------------------------------------------------------------------- /shell_cmds/false/false.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main () { exit(1); } 3 | -------------------------------------------------------------------------------- /shell_cmds/false/false.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | exit 1 3 | -------------------------------------------------------------------------------- /shell_cmds/locate/bigram/locate.bigram.8: -------------------------------------------------------------------------------- 1 | .so man8/locate.code.8 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/alias.1.stderr: -------------------------------------------------------------------------------- 1 | alias: foo: not found 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/break2.0.stdout: -------------------------------------------------------------------------------- 1 | good 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/cd9.0.stdout: -------------------------------------------------------------------------------- 1 | /dev 2 | /bin 3 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/getopts2.0.stdout: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/getopts9.0.stdout: -------------------------------------------------------------------------------- 1 | 0:a: 2 | 0:b: 3 | 1:?: 4 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/hash1.0.stdout: -------------------------------------------------------------------------------- 1 | /bin/cat 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/hash2.0.stdout: -------------------------------------------------------------------------------- 1 | /bin/cat 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/builtins/lineno3.0.stdout: -------------------------------------------------------------------------------- 1 | before: 3 2 | after: 6 3 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/errors/bad-parm-exp2.2.stderr: -------------------------------------------------------------------------------- 1 | eval: ${}: Bad substitution 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/errors/bad-parm-exp3.2.stderr: -------------------------------------------------------------------------------- 1 | eval: ${foo/}: Bad substitution 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/errors/bad-parm-exp5.2.stderr: -------------------------------------------------------------------------------- 1 | eval: ${/}: Bad substitution 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/errors/bad-parm-exp6.2.stderr: -------------------------------------------------------------------------------- 1 | eval: ${foo...}: Bad substitution 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/execution/bg10.0.stdout: -------------------------------------------------------------------------------- 1 | yes 2 | -------------------------------------------------------------------------------- /shell_cmds/sh/tests/execution/bg6.0.stdout: -------------------------------------------------------------------------------- 1 | yes 2 | -------------------------------------------------------------------------------- /shell_cmds/test/[.1: -------------------------------------------------------------------------------- 1 | .so man1/test.1 2 | -------------------------------------------------------------------------------- /shell_cmds/true/true.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main () { exit(0); } 3 | -------------------------------------------------------------------------------- /shell_cmds/true/true.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /ssh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/ssh_main.c -------------------------------------------------------------------------------- /tar/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /tar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/tar/Info.plist -------------------------------------------------------------------------------- /tar/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/tar/tar.h -------------------------------------------------------------------------------- /termcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/termcap.h -------------------------------------------------------------------------------- /text/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /text/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/ios_system/HEAD/text/text.h -------------------------------------------------------------------------------- /text_cmds/ed/red.1: -------------------------------------------------------------------------------- 1 | .so man1/ed.1 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/=.err: -------------------------------------------------------------------------------- 1 | 1,$= 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/a1.err: -------------------------------------------------------------------------------- 1 | 1,$a 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/a2.err: -------------------------------------------------------------------------------- 1 | aa 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/addr.r: -------------------------------------------------------------------------------- 1 | line 2 2 | line9 3 | -------------------------------------------------------------------------------- /text_cmds/ed/test/addr1.err: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/addr2.err: -------------------------------------------------------------------------------- 1 | -100 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/ascii.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/bang1.err: -------------------------------------------------------------------------------- 1 | .!date 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/bang1.r: -------------------------------------------------------------------------------- 1 | okay 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/bang1.t: -------------------------------------------------------------------------------- 1 | !read one 2 | hello, world 3 | a 4 | okay 5 | . 6 | -------------------------------------------------------------------------------- /text_cmds/ed/test/bang2.err: -------------------------------------------------------------------------------- 1 | !! 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/c1.err: -------------------------------------------------------------------------------- 1 | cc 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/c2.err: -------------------------------------------------------------------------------- 1 | 0c 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/d.err: -------------------------------------------------------------------------------- 1 | dd 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/d.r: -------------------------------------------------------------------------------- 1 | line 2 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/d.t: -------------------------------------------------------------------------------- 1 | 1d 2 | 2;+1d 3 | $d 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e1.err: -------------------------------------------------------------------------------- 1 | ee e1.err 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e1.r: -------------------------------------------------------------------------------- 1 | E e1.t 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e1.t: -------------------------------------------------------------------------------- 1 | E e1.t 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e2.err: -------------------------------------------------------------------------------- 1 | .e e2.err 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e2.r: -------------------------------------------------------------------------------- 1 | hello world- 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e2.t: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e3.err: -------------------------------------------------------------------------------- 1 | ee.err 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e3.r: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e3.t: -------------------------------------------------------------------------------- 1 | E 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e4.r: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/e4.t: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/f1.err: -------------------------------------------------------------------------------- 1 | .f f1.err 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/f2.err: -------------------------------------------------------------------------------- 1 | ff1.err 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/g1.err: -------------------------------------------------------------------------------- 1 | g/./s //x/ 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/g2.err: -------------------------------------------------------------------------------- 1 | g//s/./x/ 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/g2.r: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/g2.t: -------------------------------------------------------------------------------- 1 | g/[2-4]/-1,+1c\ 2 | hello world 3 | -------------------------------------------------------------------------------- /text_cmds/ed/test/g3.err: -------------------------------------------------------------------------------- 1 | g 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/g5.t: -------------------------------------------------------------------------------- 1 | g/./1,3t$\ 2 | 1d 3 | -------------------------------------------------------------------------------- /text_cmds/ed/test/h.err: -------------------------------------------------------------------------------- 1 | .h 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/i1.err: -------------------------------------------------------------------------------- 1 | 1,$i 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/i2.err: -------------------------------------------------------------------------------- 1 | ii 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/i3.err: -------------------------------------------------------------------------------- 1 | 0i 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/j.t: -------------------------------------------------------------------------------- 1 | 1,1j 2 | 2,3j 3 | -------------------------------------------------------------------------------- /text_cmds/ed/test/k1.err: -------------------------------------------------------------------------------- 1 | 1,$ka 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/k2.err: -------------------------------------------------------------------------------- 1 | kA 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/k3.err: -------------------------------------------------------------------------------- 1 | 0ka 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/k4.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | .ka 5 | 'ad 6 | 'ap 7 | -------------------------------------------------------------------------------- /text_cmds/ed/test/l.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/l.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/m.err: -------------------------------------------------------------------------------- 1 | a 2 | hello world 3 | . 4 | 1,$m1 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/n.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/n.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/nl.err: -------------------------------------------------------------------------------- 1 | ,1 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/nl1.t: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 4 | 0a 5 | 6 | 7 | hello world 8 | . 9 | -------------------------------------------------------------------------------- /text_cmds/ed/test/nl2.t: -------------------------------------------------------------------------------- 1 | a 2 | hello world 3 | . 4 | 0;/./ 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/p.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/p.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/q.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_cmds/ed/test/q.t: -------------------------------------------------------------------------------- 1 | w q.o 2 | a 3 | hello 4 | . 5 | q 6 | -------------------------------------------------------------------------------- /text_cmds/ed/test/q1.err: -------------------------------------------------------------------------------- 1 | .q 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/r1.err: -------------------------------------------------------------------------------- 1 | 1,$r r1.err 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/r2.err: -------------------------------------------------------------------------------- 1 | r a-good-book 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/r2.t: -------------------------------------------------------------------------------- 1 | r 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/r3.t: -------------------------------------------------------------------------------- 1 | r r3.t 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s1.err: -------------------------------------------------------------------------------- 1 | s . x 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s10.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | s/[h[.]/x/ 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s2.err: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | . 4 | s/x*/a/g 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s2.t: -------------------------------------------------------------------------------- 1 | ,s/./(&)/3 2 | s/$/00 3 | 2s//%/g 4 | s/^l 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s3.err: -------------------------------------------------------------------------------- 1 | s/[xyx/a/ 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s3.r: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s4.err: -------------------------------------------------------------------------------- 1 | s/\a\b\c/xyz/ 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s5.err: -------------------------------------------------------------------------------- 1 | s//xyz/ 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s6.err: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s7.err: -------------------------------------------------------------------------------- 1 | a 2 | hello world 3 | . 4 | /./ 5 | sr 6 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s8.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | s/[h[=]/x/ 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/s9.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | s/[h[:]/x/ 5 | -------------------------------------------------------------------------------- /text_cmds/ed/test/t1.err: -------------------------------------------------------------------------------- 1 | tt 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/t1.t: -------------------------------------------------------------------------------- 1 | 1t0 2 | 2,3t2 3 | ,t$ 4 | -------------------------------------------------------------------------------- /text_cmds/ed/test/t2.err: -------------------------------------------------------------------------------- 1 | t0;-1 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/t2.t: -------------------------------------------------------------------------------- 1 | t0;/./ 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/u.err: -------------------------------------------------------------------------------- 1 | .u 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/w1.err: -------------------------------------------------------------------------------- 1 | w /to/some/far-away/place 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/w2.err: -------------------------------------------------------------------------------- 1 | ww.o 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/w3.err: -------------------------------------------------------------------------------- 1 | wqp w.o 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/x.err: -------------------------------------------------------------------------------- 1 | .x 2 | -------------------------------------------------------------------------------- /text_cmds/ed/test/z.err: -------------------------------------------------------------------------------- 1 | z 2 | z 3 | --------------------------------------------------------------------------------