changed to new try (mongoose)
parent
3281cb1b6e
commit
66e45594ce
@ -0,0 +1,3 @@
|
||||
[submodule "mongoose"]
|
||||
path = mongoose
|
||||
url = git@github.com:cesanta/mongoose.git
|
@ -0,0 +1 @@
|
||||
Subproject commit 03d846529d4baf96675858849000219dae91c072
|
@ -1,20 +1,23 @@
|
||||
package "<packname>"
|
||||
version "<version>"
|
||||
package "siccc"
|
||||
version "0"
|
||||
|
||||
|
||||
purpose "This is our port of the famous „sharingg is carin“ application by Astro of C3D2: Instant filesharing made simple for $HOME networks. The Port to C++ is meant as a C++ training and to allow SIC to be deployed to small and embedded plattforms"
|
||||
|
||||
args "-C -a sic_conf -f cmd_parser"
|
||||
args "-C -a sic_conf -f cmd_parser --default-optional"
|
||||
|
||||
|
||||
option "listen" l "Specifies the adress to bind to" default="::1" string required multiple
|
||||
option "port" p "The portnumber listened to" default="12380" int
|
||||
option "listen" l "Specifies the adress to bind to" string multiple default="::1"
|
||||
option "port" p "The portnumber listened to" default="12380" int optional
|
||||
|
||||
option "saveconf" s "Save the actual configuration to a file" flag off
|
||||
|
||||
option "conffile" f "The Configurationfile to use" string default="/etc/triggerd.conf"
|
||||
option "conffile" c "The Configurationfile to use" string default="./siccc.conf"
|
||||
|
||||
option "verbose" v "increas the verbosity" flag off
|
||||
|
||||
option "daemonize" D "Detach from calling terminal" flag off
|
||||
|
||||
option "dns" d "also start an dns fakeserver"
|
||||
|
||||
option "filedir" f "Directory for data storage. Musst be r/w able" string default="./files/"
|
||||
|
Loading…
Reference in New Issue