rootftp 0.3.1

A simple FTP server tool that allows you to play with files. Multiple users can share their files with each other. You can also build custom plugins see examples for more info.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
### 1. **Image Compressor**: (libimage_compressor_plugin.so)
   -  Can be used to compress images.
   -  No use of optional input file.
   -  Extensions: ['jpeg','jpg','png']

### 2. **OCR Plugin** : (libocr_plugin.so)
   - Can be used to extract text from images.
   - Dependencies: leptonica-devel tesseract-devel clang tesseract-langpack-eng
     
     ```
     sudo dnf install leptonica-devel tesseract-devel clang tesseract-langpack-eng  //For RPM based distros
     ```
   -  Extensions: ['jpeg','jpg','png']

### 3. **CPP Compiler**: (cpp_compiler_plugin.so)
   -  Can be used to compile and run cpp files.
   -  Optional input file for stdin (Naming-> input.in).
   -  Extensions: ['cpp']