Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 896 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 896 Bytes

Netty handler for receiving files over FTP

Netty handler, partial implementation of RFC 959 "File Transfer Protocol (FTP)" for receiving FTP files. Both active and passive modes are supported.

Work based on Alex Kasko's netty-ftp-receiver

Depends on Netty 4.0.11.Final and slf4j-api.

Library is available in Maven cental:

<dependency>
    <groupId>com.butor</groupId>
    <artifactId>netty-codec-ftp</artifactId>
    <version>0.1</version>
</dependency>

License information

This project is released under the Apache License 2.0

Changelog

0.1 (2013-10-24)

  • First release of codingtony's fork