Fixed default data rates to sensible options: 200 kB/s down, 50 kB/s up.

Added StoreAllKeys() call after adding new GPG Certificate.
Added Check for successful Req creation (was crashing with NULL pointer).
Switched std::vector.data => &(std::vector[0]) to remove linuxism in radix64.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4851 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-01-27 13:03:59 +00:00
parent e6816c9d6f
commit 00ff694e10
4 changed files with 44 additions and 30 deletions

View file

@ -97,7 +97,7 @@ again:
len = buf.size() ;
out = new char[len] ;
memcpy(out,buf.data(),len) ;
memcpy(out,&buf[0],len) ;
}
/****************