├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── common.h ├── handles.c ├── main.c ├── server.c └── server.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/README.md -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/common.h -------------------------------------------------------------------------------- /handles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/handles.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/main.c -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaaronkot/ftp-server/HEAD/server.h --------------------------------------------------------------------------------