Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.77 KB

README.md

File metadata and controls

66 lines (40 loc) · 1.77 KB

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.

Depends on Netty 3 and slf4j-api.

Netty 4 compatibility and more complete FTP support is implemented in fork by codingtony.

Library is available in Maven cental:

<dependency>
    <groupId>com.alexkasko.netty</groupId>
    <artifactId>netty-ftp-receiver</artifactId>
    <version>1.2.3</version>
</dependency>

See usage example in tests.

Javadocs for the latest release are available here.

License information

This project is released under the Apache License 2.0

Changelog

1.2.3 (2014-03-12)

  • prevent error reply sending to closed channel

1.2.2 (2014-02-19)

  • fix NPE on reporting error with null message

1.2.1 (2014-01-19)

  • guard handler state with atomic references
  • incorrect passive advertised address fix
  • socket timeout support for passive mode

1.2 (2013-12-26)

  • ALLO command support
  • separate advertized address for passive mode

1.1 (2013-12-20)

  • QUIT command added
  • current directory support in receiver

1.0.2 (2013-04-30)

  • fix NPE on STOR after connection error

1.0.1 (2013-04-29)

  • socket closing fix
  • extensive logging

1.0 (2013-03-14)

  • initial public version