mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-09 17:45:15 -04:00
NETWORK REWORK (cont)
Rework of AuthSSL: cleanup and split up. * Split out independent SSL functions into sslfns.h / sslfns.cc * Reworked SSL certificate storage. * Reworked SignDataBin / VerifyDataBin (fixed memory leaks). * Removed funny code: /* cert->cert_info->key->pkey is NULL */ - just use X509_get_pubkey() instead. * Removed lots of old code. * Fixed up Mutex usage in AuthSSL - which was random. * Removed certificates from tlvSignature serialiser obj. * removed certificates from p3distrib messages. * Starting removing "unused parameter" compiler warnings. * Various related changes to make libretroshare compile. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3222 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
545a465735
commit
863a29fda1
17 changed files with 1522 additions and 1613 deletions
|
@ -210,6 +210,7 @@ HEADERS += dbase/cachestrapper.h \
|
|||
ft/ftserver.h \
|
||||
ft/fttransfermodule.h \
|
||||
# ft/ftdwlqueue.h \
|
||||
pqi/sslfns.h \
|
||||
pqi/authssl.h \
|
||||
pqi/authgpg.h \
|
||||
pqi/cleanupxpgp.h \
|
||||
|
@ -330,6 +331,32 @@ HEADERS += dbase/cachestrapper.h \
|
|||
# dht/dht_bootstrap.cc \
|
||||
|
||||
SOURCES += \
|
||||
pqi/sslfns.cc \
|
||||
pqi/authssl.cc \
|
||||
pqi/authgpg.cc \
|
||||
pqi/cleanupxpgp.cc \
|
||||
pqi/p3notify.cc \
|
||||
pqi/pqipersongrp.cc \
|
||||
pqi/pqihandler.cc \
|
||||
pqi/pqiservice.cc \
|
||||
pqi/pqiperson.cc \
|
||||
pqi/pqissludp.cc \
|
||||
pqi/pqisslpersongrp.cc \
|
||||
pqi/pqissllistener.cc \
|
||||
pqi/pqissl.cc \
|
||||
pqi/pqissltunnel.cc \
|
||||
pqi/pqistore.cc \
|
||||
# pqi/p3authmgr.cc \
|
||||
pqi/p3cfgmgr.cc \
|
||||
pqi/p3connmgr.cc \
|
||||
pqi/p3dhtmgr.cc \
|
||||
pqi/pqiarchive.cc \
|
||||
pqi/pqibin.cc \
|
||||
pqi/pqimonitor.cc \
|
||||
pqi/pqistreamer.cc \
|
||||
pqi/pqiloopback.cc \
|
||||
pqi/pqinetwork.cc \
|
||||
pqi/pqisecurity.cc \
|
||||
rsserver/p3face-msgs.cc \
|
||||
rsserver/rsiface.cc \
|
||||
rsserver/rstypes.cc \
|
||||
|
@ -379,31 +406,6 @@ SOURCES += \
|
|||
dbase/fistore.cc \
|
||||
dbase/fimonitor.cc \
|
||||
dbase/findex.cc \
|
||||
pqi/authssl.cc \
|
||||
pqi/authgpg.cc \
|
||||
pqi/cleanupxpgp.cc \
|
||||
pqi/p3notify.cc \
|
||||
pqi/pqipersongrp.cc \
|
||||
pqi/pqihandler.cc \
|
||||
pqi/pqiservice.cc \
|
||||
pqi/pqiperson.cc \
|
||||
pqi/pqissludp.cc \
|
||||
pqi/pqisslpersongrp.cc \
|
||||
pqi/pqissllistener.cc \
|
||||
pqi/pqissl.cc \
|
||||
pqi/pqissltunnel.cc \
|
||||
pqi/pqistore.cc \
|
||||
# pqi/p3authmgr.cc \
|
||||
pqi/p3cfgmgr.cc \
|
||||
pqi/p3connmgr.cc \
|
||||
pqi/p3dhtmgr.cc \
|
||||
pqi/pqiarchive.cc \
|
||||
pqi/pqibin.cc \
|
||||
pqi/pqimonitor.cc \
|
||||
pqi/pqistreamer.cc \
|
||||
pqi/pqiloopback.cc \
|
||||
pqi/pqinetwork.cc \
|
||||
pqi/pqisecurity.cc \
|
||||
serialiser/rsblogitems.cc \
|
||||
serialiser/rsstatusitems.cc \
|
||||
serialiser/rschannelitems.cc \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue