You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(from #189) Add support for EPRT (Extended Port) according to RFC 2428. This was missing for full IPv6 support (Active Mode). (#194)
* Add support for EPRT (Extended Port) according to RFC 2428. This was missing for full IPv6 support (Active Mode).
* Adding IPv6 tests
* README update
Co-authored-by: Kleissner <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,8 @@
6
6
7
7
This library allows to easily build a simple and fully-featured FTP server using [afero](https://github.com/spf13/afero) as the backend filesystem.
8
8
9
-
If you're interested in a fully featured FTP server, you should use [ftpserver](https://github.com/fclairamb/ftpserver).
9
+
If you're interested in a fully featured FTP server, you should use [ftpserver](https://github.com/fclairamb/ftpserver)
10
+
or [sftpgo](https://github.com/drakkan/).
10
11
11
12
## Current status of the project
12
13
@@ -17,8 +18,9 @@ If you're interested in a fully featured FTP server, you should use [ftpserver](
17
18
* File and directory deletion and renaming
18
19
* TLS support (AUTH + PROT)
19
20
* File download/upload resume support (REST)
20
-
* Passive socket connections (EPSV and PASV commands)
21
-
* Active socket connections (PORT command)
21
+
* Passive socket connections (PASV and EPSV commands)
22
+
* Active socket connections (PORT and EPRT commands)
23
+
* IPv6 support (EPSV + EPRT)
22
24
* Small memory footprint
23
25
* Clean code: No sync, no sleep, no panic
24
26
* Uses only the standard library except for:
@@ -28,6 +30,7 @@ If you're interested in a fully featured FTP server, you should use [ftpserver](
28
30
*[AUTH](https://tools.ietf.org/html/rfc2228#page-6) - Control session protection
0 commit comments