env.Append(CXXFLAGS="-DDEBUG")
env.StaticLibrary (
- target= target,
+ target='libswift',
source = source,
LIBS=libs,
LIBPATH=libpath )
+env.Program(
+ target='swift',
+ source=['swift.cpp','httpgw.cpp'],
+ CPPPATH=cpppath,
+ LIBS=[libs,'libswift'],
+ LIBPATH=libpath+':.' )
+
Export("env")
Export("libs")
Export("libpath")
Export("DEBUG")
SConscript('tests/SConscript')
-SConscript('exec/SConscript')
* add NATs to the setup
* recover mfold.libswift.org
* integrate Windowses
-* add WiFi nodes
API
-* notification if data is retrieved by an external code
-* events on data retrieval
* pluggable storage
NAT
* Gertjan: separate peer from channel? cng ctrl per peer ?
* packing hashes into a single datagram (tracking 1000s)
* partial channels / lightweight channels
-* socket array is misplaced
+
+THOUGHTS
+* 6 degrees of sep = 3-hop TorrentSmell
+* 60% immediately not connectable
+* support traffic
SEND_CONTROL_MODES[send_control_],SEND_CONTROL_MODES[control_mode]);
switch (control_mode) {
case KEEP_ALIVE_CONTROL:
- send_interval_ = max(TINT_SEC/10,rtt_avg_);
+ send_interval_ = rtt_avg_; //max(TINT_SEC/10,rtt_avg_);
dev_avg_ = max(TINT_SEC,rtt_avg_);
data_out_cap_ = bin64_t::ALL;
cwnd_ = 1;