gitextract_aq77ie1o/ ├── .github/ │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── SECURITY.md │ └── workflows/ │ ├── build.yml │ ├── coverity.yml │ └── release.yml ├── .gitignore ├── ChangeLog.md ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── debian/ │ ├── .gitignore │ ├── README.Debian │ ├── changelog │ ├── compat │ ├── config │ ├── control │ ├── copyright │ ├── dirs │ ├── docs │ ├── postinst │ ├── postrm │ ├── prerm │ ├── rules │ ├── source/ │ │ └── format │ └── templates ├── doc/ │ └── TODO.md ├── man/ │ ├── Makefile.am │ └── uftpd.8 ├── src/ │ ├── .gitignore │ ├── Makefile.am │ ├── common.c │ ├── ftpcmd.c │ ├── log.c │ ├── tftpcmd.c │ ├── uftpd.c │ └── uftpd.h └── test/ ├── .gitignore ├── Makefile.am ├── ftp.sh ├── lib.sh ├── maxfiles.sh ├── mlst.sh └── tftp.sh