1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Source: proftpd-mod-counter
Section: net
Priority: optional
Maintainer: ProFTPD Maintainance Team <pkg-proftpd-maintainers@lists.alioth.debian.org>
Uploaders: Mahyuddin Susanto <udienz@ubuntu.com>,
Francesco Paolo Lovergine <frankie@debian.org>
Build-Depends: debhelper (>= 9.20160114),
proftpd-dev (>= 1.3.6~)
Standards-Version: 4.1.4
Homepage: http://www.castaglia.org/proftpd/modules/mod_counter.html
Vcs-Git: git://git.debian.org/pkg-proftpd/proftpd-mod-counter.git
Vcs-Browser: http://git.debian.org/?p=pkg-proftpd/proftpd-mod-counter.git
Package: proftpd-mod-counter
Architecture: any
Depends: proftpd-basic (>= 1.3.4~),
${misc:Depends},
${proftpd:Depends},
${shlibs:Depends}
Description: ProFTPD module mod_counter
The mod_counter module is designed to allow a sort of "locking" to be
enforced when the same file is being uploaded or downloaded by multiple
clients at the same time.
.
The mod_counter works by creating a SysV semaphore for a file being
read/written, and placing a number of reader or writer "counters" in that
semaphore. When the configured maximum number of counters is reached, the
FTP command which seeks to add another reader/writer counter will be denied.
This allows site to configure the maximum number of clients which can be
reading/writing any file at one time.
|