├── README.txt ├── RetroShare.pro ├── TODO.txt ├── libbitdht └── src │ ├── README.txt │ ├── bitdht │ ├── Makefile │ ├── bdaccount.cc │ ├── bdaccount.h │ ├── bdboot.txt │ ├── bdconnection.cc │ ├── bdconnection.h │ ├── bdfilter.cc │ ├── bdfilter.h │ ├── bdfriendlist.cc │ ├── bdfriendlist.h │ ├── bdhash.cc │ ├── bdhash.h │ ├── bdhistory.cc │ ├── bdhistory.h │ ├── bdiface.h │ ├── bdmanager.cc │ ├── bdmanager.h │ ├── bdmsgs.cc │ ├── bdmsgs.h │ ├── bdnode.cc │ ├── bdnode.h │ ├── bdobj.cc │ ├── bdobj.h │ ├── bdpeer.cc │ ├── bdpeer.h │ ├── bdquery.cc │ ├── bdquery.h │ ├── bdquerymgr.cc │ ├── bdquerymgr.h │ ├── bdstddht.cc │ ├── bdstddht.h │ ├── bdstore.cc │ ├── bdstore.h │ ├── bencode.c │ └── bencode.h │ ├── example │ ├── Makefile │ ├── bdboot.txt │ ├── bdhandler.cc │ ├── bdhandler.h │ ├── bootstrap_fn.cc │ ├── bootstrap_fn.h │ └── bssdht.cc │ ├── libbitdht.pro │ ├── mingw32make.bat │ ├── tests │ ├── Makefile │ ├── bdbloom_makefilter.cc │ ├── bdbloom_test.cc │ ├── bdboot.txt │ ├── bdmetric_test.cc │ ├── bdmgr_multitest.cc │ ├── bdmidids_test.cc │ ├── bdmsgs_test.cc │ ├── bdnode_multitest1.cc │ ├── bdnode_test.cc │ ├── bdnode_test2.cc │ ├── bdquery_test.cc │ ├── bdspace_test.cc │ ├── bdspace_test2.cc │ ├── bdstore_test.cc │ ├── bdudp_test.cc │ ├── bencode_test.cc │ ├── scripts │ │ ├── checks.mk │ │ ├── config-cygwin.mk │ │ ├── config-linux.mk │ │ ├── config-macosx.mk │ │ ├── config-mingw.mk │ │ ├── config.mk │ │ ├── regress.mk │ │ └── rules.mk │ ├── udpbitdht_nettest.cc │ └── utest.h │ ├── udp │ ├── udpbitdht.cc │ ├── udpbitdht.h │ ├── udplayer.cc │ ├── udplayer.h │ ├── udpproxylayer.h │ ├── udpstack.cc │ └── udpstack.h │ └── util │ ├── bdbloom.cc │ ├── bdbloom.h │ ├── bdfile.cc │ ├── bdfile.h │ ├── bdnet.cc │ ├── bdnet.h │ ├── bdrandom.cc │ ├── bdrandom.h │ ├── bdstring.cc │ ├── bdstring.h │ ├── bdthreads.cc │ └── bdthreads.h ├── libresapi └── src │ ├── README.md │ ├── api │ ├── ApiServer.cpp │ ├── ApiServer.h │ ├── ApiServerMHD.cpp │ ├── ApiServerMHD.h │ ├── ApiTypes.h │ ├── ChatHandler.cpp │ ├── ChatHandler.h │ ├── FileSearchHandler.cpp │ ├── FileSearchHandler.h │ ├── GetPluginInterfaces.cpp │ ├── GetPluginInterfaces.h │ ├── GxsMetaOperators.h │ ├── GxsResponseTask.cpp │ ├── GxsResponseTask.h │ ├── IdentityHandler.cpp │ ├── IdentityHandler.h │ ├── JsonStream.cpp │ ├── JsonStream.h │ ├── LivereloadHandler.cpp │ ├── LivereloadHandler.h │ ├── Operators.cpp │ ├── Operators.h │ ├── Pagination.h │ ├── PeersHandler.cpp │ ├── PeersHandler.h │ ├── README.md │ ├── ResourceRouter.cpp │ ├── ResourceRouter.h │ ├── RsControlModule.cpp │ ├── RsControlModule.h │ ├── ServiceControlHandler.cpp │ ├── ServiceControlHandler.h │ ├── StateTokenServer.cpp │ ├── StateTokenServer.h │ ├── TmpBlobStore.cpp │ ├── TmpBlobStore.h │ ├── TransfersHandler.cpp │ ├── TransfersHandler.h │ ├── json.cpp │ └── json.h │ ├── libresapi.pro │ ├── webfiles │ ├── JSXTransformer.js │ ├── RsApi.js │ ├── RsXHRConnection.js │ ├── green-black.css │ ├── gui.jsx │ ├── index.html │ └── react.js │ └── webui │ ├── Makefile │ ├── PeersTest.js │ ├── README.md │ ├── RsApi.js │ ├── RsNodeHttpConnection.js │ ├── RsXHRConnection.js │ ├── Types.js │ ├── green-black.css │ ├── gui.jsx │ ├── index.html │ └── package.json ├── libretroshare └── src │ ├── BUGS │ ├── Doxyfile │ ├── Readme.txt │ ├── TODO │ ├── chat │ ├── distantchat.cc │ ├── distantchat.h │ ├── distributedchat.cc │ ├── distributedchat.h │ ├── p3chatservice.cc │ ├── p3chatservice.h │ ├── rschatitems.cc │ └── rschatitems.h │ ├── dbase │ ├── cachestrapper.cc │ ├── cachestrapper.h │ ├── cachetest.h │ ├── fimonitor.cc │ ├── fimonitor.h │ ├── findex.cc │ ├── findex.h │ ├── fistore.cc │ ├── fistore.h │ └── rsexpr.cc │ ├── dht │ ├── connectstatebox.cc │ ├── connectstatebox.h │ ├── p3bitdht.cc │ ├── p3bitdht.h │ ├── p3bitdht_interface.cc │ ├── p3bitdht_peernet.cc │ ├── p3bitdht_peers.cc │ ├── p3bitdht_relay.cc │ └── stunaddrassist.h │ ├── file_sharing │ └── README.txt │ ├── ft │ ├── ftchunkmap.cc │ ├── ftchunkmap.h │ ├── ftcontroller.cc │ ├── ftcontroller.h │ ├── ftdata.h │ ├── ftdatamultiplex.cc │ ├── ftdatamultiplex.h │ ├── ftdbase.cc │ ├── ftdbase.h │ ├── ftextralist.cc │ ├── ftextralist.h │ ├── ftfilecreator.cc │ ├── ftfilecreator.h │ ├── ftfileprovider.cc │ ├── ftfileprovider.h │ ├── ftfilesearch.cc │ ├── ftfilesearch.h │ ├── ftsearch.h │ ├── ftserver.cc │ ├── ftserver.h │ ├── fttransfermodule.cc │ ├── fttransfermodule.h │ ├── ftturtlefiletransferitem.cc │ └── ftturtlefiletransferitem.h │ ├── grouter │ ├── groutercache.h │ ├── grouterclientservice.h │ ├── grouteritems.cc │ ├── grouteritems.h │ ├── groutermatrix.cc │ ├── groutermatrix.h │ ├── groutertypes.h │ ├── p3grouter.cc │ └── p3grouter.h │ ├── gxs │ ├── UseCases.txt │ ├── db_acadeeb.h │ ├── db_gixp.h │ ├── db_gmxp.h │ ├── db_gxp.h │ ├── db_gxp_apps.h │ ├── db_gxp_service.h │ ├── db_wire.h │ ├── gxssecurity.cc │ ├── gxssecurity.h │ ├── gxstokenqueue.cc │ ├── gxstokenqueue.h │ ├── rsdataservice.cc │ ├── rsdataservice.h │ ├── rsgds.h │ ├── rsgenexchange.cc │ ├── rsgenexchange.h │ ├── rsgixs.h │ ├── rsgroups.h │ ├── rsgxs.h │ ├── rsgxsdata.cc │ ├── rsgxsdata.h │ ├── rsgxsdataaccess.cc │ ├── rsgxsdataaccess.h │ ├── rsgxsnetservice.cc │ ├── rsgxsnetservice.h │ ├── rsgxsnetutils.cc │ ├── rsgxsnetutils.h │ ├── rsgxsrequesttypes.cc │ ├── rsgxsrequesttypes.h │ ├── rsgxsutil.cc │ ├── rsgxsutil.h │ ├── rsnxs.h │ └── rsnxsobserver.h │ ├── libretroshare.pro │ ├── licence │ ├── mingw32make.bat │ ├── pgp │ ├── pgpauxutils.cc │ ├── pgpauxutils.h │ ├── pgphandler.cc │ ├── pgphandler.h │ ├── pgpkeyutil.cc │ ├── pgpkeyutil.h │ ├── rscertificate.cc │ └── rscertificate.h │ ├── plugins │ ├── dlfcn_win32.cc │ ├── dlfcn_win32.h │ ├── pluginmanager.cc │ ├── pluginmanager.h │ ├── rscacheservice.h │ └── rspqiservice.h │ ├── pqi │ ├── Makefile │ ├── authgpg.cc │ ├── authgpg.h │ ├── authgpgtest.cc │ ├── authgpgtest.h │ ├── authssl.cc │ ├── authssl.h │ ├── authssltest.cc │ ├── authssltest.h │ ├── p3cfgmgr.cc │ ├── p3cfgmgr.h │ ├── p3dhtmgr.cc │ ├── p3dhtmgr.h │ ├── p3historymgr.cc │ ├── p3historymgr.h │ ├── p3linkmgr.cc │ ├── p3linkmgr.h │ ├── p3netmgr.cc │ ├── p3netmgr.h │ ├── p3notify.cc │ ├── p3notify.h │ ├── p3peermgr.cc │ ├── p3peermgr.h │ ├── p3servicecontrol.cc │ ├── p3servicecontrol.h │ ├── p3upnpmgr.h │ ├── pqi.h │ ├── pqi_base.h │ ├── pqiarchive.cc │ ├── pqiarchive.h │ ├── pqiassist.h │ ├── pqibin.cc │ ├── pqibin.h │ ├── pqihandler.cc │ ├── pqihandler.h │ ├── pqihash.h │ ├── pqiindic.h │ ├── pqiipset.cc │ ├── pqiipset.h │ ├── pqilistener.h │ ├── pqiloopback.cc │ ├── pqiloopback.h │ ├── pqimonitor.cc │ ├── pqimonitor.h │ ├── pqinetstatebox.cc │ ├── pqinetstatebox.h │ ├── pqinetwork.cc │ ├── pqinetwork.h │ ├── pqiperson.cc │ ├── pqiperson.h │ ├── pqipersongrp.cc │ ├── pqipersongrp.h │ ├── pqiqos.cc │ ├── pqiqos.h │ ├── pqiqosstreamer.cc │ ├── pqiqosstreamer.h │ ├── pqiservice.cc │ ├── pqiservice.h │ ├── pqiservicemonitor.h │ ├── pqissl.cc │ ├── pqissl.h │ ├── pqissllistener.cc │ ├── pqissllistener.h │ ├── pqisslpersongrp.cc │ ├── pqisslpersongrp.h │ ├── pqisslproxy.cc │ ├── pqisslproxy.h │ ├── pqissludp.cc │ ├── pqissludp.h │ ├── pqistore.cc │ ├── pqistore.h │ ├── pqistreamer.cc │ ├── pqistreamer.h │ ├── pqithreadstreamer.cc │ ├── pqithreadstreamer.h │ ├── sslfns.cc │ └── sslfns.h │ ├── retroshare │ ├── Makefile │ ├── rsbanlist.h │ ├── rsconfig.h │ ├── rsdht.h │ ├── rsdisc.h │ ├── rsdsdv.h │ ├── rsexpr.h │ ├── rsfiles.h │ ├── rsflags.h │ ├── rsgrouter.h │ ├── rsgxschannels.h │ ├── rsgxscircles.h │ ├── rsgxscommon.h │ ├── rsgxsflags.h │ ├── rsgxsforums.h │ ├── rsgxsiface.h │ ├── rsgxsifacehelper.h │ ├── rsgxsifacetypes.h │ ├── rsgxsservice.h │ ├── rshistory.h │ ├── rsidentity.h │ ├── rsids.h │ ├── rsiface.h │ ├── rsinit.h │ ├── rsmsgs.h │ ├── rsnotify.h │ ├── rspeers.h │ ├── rsphoto.h │ ├── rsplugin.h │ ├── rsposted.h │ ├── rspostedVEG.h │ ├── rsrtt.h │ ├── rsservicecontrol.h │ ├── rsstatus.h │ ├── rstokenservice.h │ ├── rsturtle.h │ ├── rstypes.h │ ├── rsversion.h │ ├── rsversion.in │ ├── rswiki.h │ └── rswire.h │ ├── rsserver │ ├── Makefile │ ├── p3face-config.cc │ ├── p3face-info.cc │ ├── p3face-server.cc │ ├── p3face.h │ ├── p3history.cc │ ├── p3history.h │ ├── p3msgs.cc │ ├── p3msgs.h │ ├── p3peers.cc │ ├── p3peers.h │ ├── p3photo.cc │ ├── p3photo.h │ ├── p3rank.cc │ ├── p3rank.h │ ├── p3serverconfig.cc │ ├── p3serverconfig.h │ ├── p3status.cc │ ├── p3status.h │ ├── rsaccounts.cc │ ├── rsaccounts.h │ ├── rsinit.cc │ ├── rsloginhandler.cc │ ├── rsloginhandler.h │ └── rstypes.cc │ ├── scripts │ ├── checks.mk │ ├── config-cygwin.mk │ ├── config-linux.mk │ ├── config-macosx.mk │ ├── config-mingw.mk │ ├── config.mk │ ├── documentation-script │ ├── makeMacUniversalLibrary.sh │ ├── regress.mk │ ├── rsDocumentation │ └── rules.mk │ ├── serialiser │ ├── itempriorities.h │ ├── rsbanlistitems.cc │ ├── rsbanlistitems.h │ ├── rsbaseserial.cc │ ├── rsbaseserial.h │ ├── rsbwctrlitems.cc │ ├── rsbwctrlitems.h │ ├── rsconfigitems.cc │ ├── rsconfigitems.h │ ├── rsdiscovery2items.cc │ ├── rsdiscovery2items.h │ ├── rsdsdvitems.cc │ ├── rsdsdvitems.h │ ├── rsfiletransferitems.cc │ ├── rsfiletransferitems.h │ ├── rsgxschannelitems.cc │ ├── rsgxschannelitems.h │ ├── rsgxscircleitems.cc │ ├── rsgxscircleitems.h │ ├── rsgxscommentitems.cc │ ├── rsgxscommentitems.h │ ├── rsgxsforumitems.cc │ ├── rsgxsforumitems.h │ ├── rsgxsiditems.cc │ ├── rsgxsiditems.h │ ├── rsgxsitem.h │ ├── rsgxsitems.cc │ ├── rsgxsitems.h │ ├── rsgxsrecognitems.cc │ ├── rsgxsrecognitems.h │ ├── rsgxsreputationitems.cc │ ├── rsgxsreputationitems.h │ ├── rsgxsupdateitems.cc │ ├── rsgxsupdateitems.h │ ├── rsheartbeatitems.cc │ ├── rsheartbeatitems.h │ ├── rshistoryitems.cc │ ├── rshistoryitems.h │ ├── rsmailtransportitems.cc │ ├── rsmailtransportitems.h │ ├── rsmsgitems.cc │ ├── rsmsgitems.h │ ├── rsnxsitems.cc │ ├── rsnxsitems.h │ ├── rsphotoitems.cc │ ├── rsphotoitems.h │ ├── rspluginitems.cc │ ├── rspluginitems.h │ ├── rsposteditems.cc │ ├── rsposteditems.h │ ├── rsrttitems.cc │ ├── rsrttitems.h │ ├── rsserial.cc │ ├── rsserial.h │ ├── rsserviceids.h │ ├── rsserviceinfoitems.cc │ ├── rsserviceinfoitems.h │ ├── rsserviceserialiser.cc │ ├── rsserviceserialiser.h │ ├── rsstatusitems.cc │ ├── rsstatusitems.h │ ├── rstlvaddrs.cc │ ├── rstlvaddrs.h │ ├── rstlvbanlist.cc │ ├── rstlvbanlist.h │ ├── rstlvbase.cc │ ├── rstlvbase.h │ ├── rstlvbinary.cc │ ├── rstlvbinary.h │ ├── rstlvdsdv.cc │ ├── rstlvdsdv.h │ ├── rstlvfileitem.cc │ ├── rstlvfileitem.h │ ├── rstlvgenericmap.h │ ├── rstlvgenericmap.inl │ ├── rstlvgenericparam.cc │ ├── rstlvgenericparam.h │ ├── rstlvidset.cc │ ├── rstlvidset.h │ ├── rstlvimage.cc │ ├── rstlvimage.h │ ├── rstlvitem.cc │ ├── rstlvitem.h │ ├── rstlvkeys.cc │ ├── rstlvkeys.h │ ├── rstlvkeyvalue.cc │ ├── rstlvkeyvalue.h │ ├── rstlvlist.h │ ├── rstlvmail.cc │ ├── rstlvmail.h │ ├── rstlvmaps.h │ ├── rstlvstring.cc │ ├── rstlvstring.h │ ├── rswikiitems.cc │ ├── rswikiitems.h │ ├── rswireitems.cc │ └── rswireitems.h │ ├── services │ ├── Makefile │ ├── mail │ │ ├── directmailservice.cc │ │ ├── directmailservice.h │ │ ├── mailtransport.cc │ │ └── mailtransport.h │ ├── p3banlist.cc │ ├── p3banlist.h │ ├── p3bwctrl.cc │ ├── p3bwctrl.h │ ├── p3discovery2.cc │ ├── p3discovery2.h │ ├── p3dsdv.cc │ ├── p3dsdv.h │ ├── p3gxschannels.cc │ ├── p3gxschannels.h │ ├── p3gxscircles.cc │ ├── p3gxscircles.h │ ├── p3gxscommon.cc │ ├── p3gxscommon.h │ ├── p3gxsforums.cc │ ├── p3gxsforums.h │ ├── p3gxsreputation.cc │ ├── p3gxsreputation.h │ ├── p3heartbeat.cc │ ├── p3heartbeat.h │ ├── p3idservice.cc │ ├── p3idservice.h │ ├── p3msgservice.cc │ ├── p3msgservice.h │ ├── p3photoservice.cc │ ├── p3photoservice.h │ ├── p3postbase.cc │ ├── p3postbase.h │ ├── p3posted.cc │ ├── p3posted.h │ ├── p3rtt.cc │ ├── p3rtt.h │ ├── p3service.cc │ ├── p3service.h │ ├── p3serviceinfo.cc │ ├── p3serviceinfo.h │ ├── p3statusservice.cc │ ├── p3statusservice.h │ ├── p3tunnel.cc │ ├── p3tunnel.h │ ├── p3wiki.cc │ ├── p3wiki.h │ ├── p3wire.cc │ └── p3wire.h │ ├── svn_revision.bat │ ├── tcponudp │ ├── bio_tou.h │ ├── bss_tou.c │ ├── rsudpstack.h │ ├── tcppacket.cc │ ├── tcppacket.h │ ├── tcpstream.cc │ ├── tcpstream.h │ ├── tou.cc │ ├── tou.h │ ├── udppeer.cc │ ├── udppeer.h │ ├── udprelay.cc │ ├── udprelay.h │ ├── udpstunner.cc │ └── udpstunner.h │ ├── tests │ ├── TestNotes.txt │ ├── common │ │ └── testutils.h │ ├── dbase │ │ ├── Makefile │ │ ├── ficachetest.cc │ │ ├── fimontest.cc │ │ ├── fisavetest.cc │ │ ├── fitest2.cc │ │ └── searchtest.cc │ ├── ft │ │ ├── Makefile │ │ ├── TestNotes.txt │ │ ├── ftcontrollertest.cc │ │ ├── ftcontrollertest.sh │ │ ├── ftcrc32test.cc │ │ ├── ftcrossprovidercreatortest.cc │ │ ├── ftdata_dummy.cc │ │ ├── ftdata_dummy.h │ │ ├── ftdataplextest.cc │ │ ├── ftextralisttest.cc │ │ ├── ftfilecreatortest.cc │ │ ├── ftfilemappertest.cc │ │ ├── ftfileprovidertest.cc │ │ ├── ftsearch_dummy.cc │ │ ├── ftsearch_dummy.h │ │ ├── ftserver1test.cc │ │ ├── ftserver1test.sh │ │ ├── ftserver2test.cc │ │ ├── ftserver2test.sh │ │ ├── ftserver3test.cc │ │ ├── ftserver3test.sh │ │ ├── fttransfermoduletest.cc │ │ ├── pqitestor.cc │ │ └── pqitestor.h │ ├── general │ │ ├── Makefile │ │ ├── memory_management_test.cc │ │ ├── netsetup_test.cc │ │ ├── pgpkey_test.cc │ │ └── random_test.cc │ ├── gxs │ │ ├── common │ │ │ ├── data_support.cc │ │ │ ├── data_support.h │ │ │ ├── support.cc │ │ │ └── support.h │ │ ├── data_service │ │ │ ├── nxs_tests.pro │ │ │ ├── rsdataservice_test.cc │ │ │ ├── rsdataservice_test.h │ │ │ └── rsgxsdata_test.cc │ │ ├── gen_exchange │ │ │ ├── genexchange_test.pro │ │ │ ├── genexchangetester.cpp │ │ │ ├── genexchangetester.h │ │ │ ├── genexchangetestservice.cpp │ │ │ ├── genexchangetestservice.h │ │ │ ├── gxsmsgrelatedtest.cpp │ │ │ ├── gxsmsgrelatedtest.h │ │ │ ├── gxspublishgrouptest.cc │ │ │ ├── gxspublishgrouptest.h │ │ │ ├── gxspublishmsgtest.cc │ │ │ ├── gxspublishmsgtest.h │ │ │ ├── rsdummyservices.cc │ │ │ ├── rsdummyservices.h │ │ │ └── rsgenexchange_test.cc │ │ └── nxs_test │ │ │ ├── nxs_tests.pro │ │ │ ├── nxstesthub.cc │ │ │ ├── nxstesthub.h │ │ │ ├── nxstestscenario.cc │ │ │ ├── nxstestscenario.h │ │ │ └── rsgxsnetservice_test.cc │ ├── network_simulator │ │ ├── README.txt │ │ ├── gui │ │ │ ├── GlobalRouterStatistics.cpp │ │ │ ├── GlobalRouterStatistics.h │ │ │ ├── GlobalRouterStatistics.ui │ │ │ ├── NetworkSimulatorGUI.cpp │ │ │ ├── NetworkSimulatorGUI.h │ │ │ ├── NetworkSimulatorGUI.ui │ │ │ ├── NetworkViewer.cpp │ │ │ ├── NetworkViewer.h │ │ │ ├── RsAutoUpdatePage.cpp │ │ │ ├── RsAutoUpdatePage.h │ │ │ ├── TurtleRouterStatistics.cpp │ │ │ ├── TurtleRouterStatistics.h │ │ │ ├── TurtleRouterStatistics.ui │ │ │ ├── gui.pro │ │ │ └── main.cpp │ │ ├── network_simulator.pro │ │ └── nscore │ │ │ ├── FakeComponents.h │ │ │ ├── MainLoop.cpp │ │ │ ├── MonitoredGRouterClient.cpp │ │ │ ├── MonitoredGRouterClient.h │ │ │ ├── MonitoredRsPeers.cpp │ │ │ ├── MonitoredRsPeers.h │ │ │ ├── MonitoredTurtleClient.cpp │ │ │ ├── MonitoredTurtleClient.h │ │ │ ├── Network.cpp │ │ │ ├── Network.h │ │ │ ├── PeerNode.cpp │ │ │ ├── PeerNode.h │ │ │ └── nscore.pro │ ├── perform_all_auto_tests.sh │ ├── pgp │ │ ├── Makefile │ │ ├── test_certificate.cc │ │ ├── test_certificate.newformat.rsc │ │ ├── test_certificate.oldformat.rsc │ │ ├── test_certificate.sh │ │ ├── test_identity_import.c │ │ ├── test_key_parsing.cc │ │ ├── test_key_parsing.sh │ │ ├── test_pgp_handler.cc │ │ ├── test_pgp_handler.sh │ │ ├── test_pgp_signature_parsing.cc │ │ └── test_pubring.gpg │ ├── pqi │ │ ├── Makefile │ │ ├── TestNotes.txt │ │ ├── conn_harness.cc │ │ ├── conn_harness.h │ │ ├── conn_test.cc │ │ ├── dht_test.cc │ │ ├── dnsresolver_test.cc │ │ ├── extaddrfinder_test.cc │ │ ├── gpgme_tst.c │ │ ├── net_test.cc │ │ ├── net_test1.cc │ │ ├── netiface_test.cc │ │ ├── p3connmgr_connect_test.cc │ │ ├── p3connmgr_reset_test.cc │ │ ├── pkt_test.cc │ │ ├── pkt_test.h │ │ ├── ppg_harness.cc │ │ ├── ppg_harness.h │ │ ├── pqiarchive_test.cc │ │ ├── pqiipset_test.cc │ │ ├── pqiperson_test.cc │ │ ├── pqipersongrp_test.cc │ │ ├── pqiqos_test.cc │ │ ├── testconnect.cc │ │ └── testconnect.h │ ├── printcache │ │ ├── main.cpp │ │ ├── main_extended.cpp │ │ └── printcache.pro │ ├── scripts │ │ ├── checks.mk │ │ ├── config-cygwin.mk │ │ ├── config-linux.mk │ │ ├── config-macosx.mk │ │ ├── config-mingw.mk │ │ ├── config.mk │ │ ├── regress.mk │ │ └── rules.mk │ ├── serialiser │ │ ├── Makefile │ │ ├── TestNotes.txt │ │ ├── distribitem_test.cc │ │ ├── distribitem_test.h │ │ ├── perform_auto_tests.sh │ │ ├── rsbaseitem_test.cc │ │ ├── rsconfigitem_test.cc │ │ ├── rsconfigitem_test.h │ │ ├── rsgrouteritem_test.cc │ │ ├── rsgrouteritem_test.h │ │ ├── rsgxsupdateitem_test.cc │ │ ├── rsgxsupdateitem_test.h │ │ ├── rsmsgitem_test.cc │ │ ├── rsmsgitem_test.h │ │ ├── rsnxsitems_test.cc │ │ ├── rsnxsitems_test.h │ │ ├── rsphotoitem_test.cc │ │ ├── rsphotoitem_test.h │ │ ├── rsserial_test.cc │ │ ├── rsstatusitem_test.cc │ │ ├── rsstatusitem_test.h │ │ ├── rstlvutil.cc │ │ ├── rstlvutil.h │ │ ├── rstlvwidetest.cc │ │ ├── rstunnelitem_test.cc │ │ ├── rsturtleitem_test.cc │ │ ├── support.cc │ │ ├── support.h │ │ ├── tlvbase_test.cc │ │ ├── tlvbase_test2.cc │ │ ├── tlvitems_test.cc │ │ ├── tlvkey_test.cc │ │ ├── tlvrandom_test.cc │ │ ├── tlvstack_test.cc │ │ ├── tlvtypes_test.cc │ │ └── valgrind_all.sh │ ├── services │ │ ├── Makefile │ │ ├── chatservicetest.cc │ │ ├── chatservicetest.h │ │ ├── chattest.cc │ │ ├── distribtest.cc │ │ ├── forumservicetest.cc │ │ ├── forumservicetest.h │ │ ├── servicetest.cc │ │ └── servicetest.h │ ├── tcponudp │ │ ├── Makefile │ │ ├── bidir_tou.cc │ │ ├── bidir_tou.sh │ │ ├── internal_tou.cc │ │ ├── largefile_tou.cc │ │ ├── pair_tou.cc │ │ ├── reset_tou.cc │ │ ├── stacks_tou.cc │ │ ├── stacks_tou.sh │ │ ├── test_tou.cc │ │ ├── test_tou.sh │ │ ├── timed_tou.cc │ │ ├── timed_tou.sh │ │ ├── udp_server.cc │ │ ├── udp_server.sh │ │ ├── udpsock_test.cc │ │ ├── udpsock_test.sh │ │ ├── udpsort_test.cc │ │ ├── udpsort_test.sh │ │ ├── udptestfn.cc │ │ └── udptestfn.h │ ├── upnp │ │ ├── Makefile │ │ └── upnpforward.cc │ └── util │ │ ├── Makefile │ │ ├── aes_test.cc │ │ ├── compress_test.cc │ │ ├── dir2test.cc │ │ ├── dirtest.cc │ │ ├── sha1_test.cc │ │ ├── test_fifo.cpp │ │ ├── testcontentvalue.cpp │ │ ├── testretrocursor.cpp │ │ └── testretrodb.cpp │ ├── turtle │ ├── Makefile │ ├── p3turtle.cc │ ├── p3turtle.h │ ├── rsturtleitem.cc │ ├── rsturtleitem.h │ ├── turtleclientservice.h │ ├── turtlestatistics.h │ └── turtletypes.h │ ├── unfinished │ ├── p3portservice.cc │ └── p3portservice.h │ ├── upnp │ ├── Makefile │ ├── UPnPBase.cpp │ ├── UPnPBase.h │ ├── upnphandler_linux.cc │ ├── upnphandler_linux.h │ ├── upnphandler_miniupnp.cc │ ├── upnphandler_miniupnp.h │ ├── upnptest.cc │ ├── upnputil.c │ └── upnputil.h │ ├── util │ ├── Makefile │ ├── argstream.h │ ├── contentvalue.cc │ ├── contentvalue.h │ ├── dnsresolver.cc │ ├── dnsresolver.h │ ├── exampletst.c │ ├── extaddrfinder.cc │ ├── extaddrfinder.h │ ├── folderiterator.cc │ ├── folderiterator.h │ ├── pugiconfig.h │ ├── radix64.h │ ├── retrodb.cc │ ├── retrodb.h │ ├── rsaes.cc │ ├── rsaes.h │ ├── rscompress.cc │ ├── rscompress.h │ ├── rsdbbind.cc │ ├── rsdbbind.h │ ├── rsdebug.cc │ ├── rsdebug.h │ ├── rsdir.cc │ ├── rsdir.h │ ├── rsdiscspace.cc │ ├── rsdiscspace.h │ ├── rsinitedptr.h │ ├── rsmemcache.h │ ├── rsmemory.h │ ├── rsnet.cc │ ├── rsnet.h │ ├── rsnet_ss.cc │ ├── rsprint.cc │ ├── rsprint.h │ ├── rsrandom.cc │ ├── rsrandom.h │ ├── rsrecogn.cc │ ├── rsrecogn.h │ ├── rsscopetimer.h │ ├── rssharedptr.h │ ├── rsstd.h │ ├── rsstring.cc │ ├── rsstring.h │ ├── rsthreads.cc │ ├── rsthreads.h │ ├── rstickevent.cc │ ├── rstickevent.h │ ├── rsversioninfo.cc │ ├── rsversioninfo.h │ ├── rswin.cc │ ├── rswin.h │ ├── smallobject.cc │ ├── smallobject.h │ └── utest.h │ ├── version_detail.sh │ └── zeroconf │ ├── NOTES.txt │ ├── p3zcnatassist.cc │ ├── p3zcnatassist.h │ ├── p3zeroconf.cc │ └── p3zeroconf.h ├── openpgpsdk └── src │ ├── openpgpsdk.pro │ └── openpgpsdk │ ├── accumulate.c │ ├── accumulate.h │ ├── armour.h │ ├── callback.h │ ├── compress.c │ ├── compress.h │ ├── configure.h │ ├── create.c │ ├── create.h │ ├── crypto.c │ ├── crypto.h │ ├── defs.h │ ├── errors.c │ ├── errors.h │ ├── final.h │ ├── fingerprint.c │ ├── hash.c │ ├── hash.h │ ├── keyring.c │ ├── keyring.h │ ├── keyring_local.h │ ├── lists.c │ ├── lists.h │ ├── literal.h │ ├── memory.c │ ├── memory.h │ ├── openssl_crypto.c │ ├── opsdir.c │ ├── opsdir.h │ ├── opsstring.c │ ├── opsstring.h │ ├── packet-parse.c │ ├── packet-parse.h │ ├── packet-print.c │ ├── packet-show-cast.h │ ├── packet-show.c │ ├── packet-show.h │ ├── packet.h │ ├── parse_local.h │ ├── partial.h │ ├── random.c │ ├── random.h │ ├── reader.c │ ├── reader_armoured.c │ ├── reader_encrypted_se.c │ ├── reader_encrypted_seip.c │ ├── reader_fd.c │ ├── reader_hashed.c │ ├── reader_mem.c │ ├── readerwriter.c │ ├── readerwriter.h │ ├── signature.c │ ├── signature.h │ ├── std_print.h │ ├── streamwriter.h │ ├── symmetric.c │ ├── types.h │ ├── util.c │ ├── util.h │ ├── validate.c │ ├── validate.h │ ├── version.h │ ├── writer.c │ ├── writer.h │ ├── writer_armour.c │ ├── writer_armoured.h │ ├── writer_encrypt.c │ ├── writer_encrypt_se_ip.c │ ├── writer_fd.c │ ├── writer_literal.c │ ├── writer_memory.c │ ├── writer_partial.c │ ├── writer_skey_checksum.c │ └── writer_stream_encrypt_se_ip.c ├── plugins ├── Common │ └── retroshare_plugin.pri ├── FeedReader │ ├── FeedReader.pro │ ├── FeedReaderPlugin.cpp │ ├── FeedReaderPlugin.h │ ├── gui │ │ ├── AddFeedDialog.cpp │ │ ├── AddFeedDialog.h │ │ ├── AddFeedDialog.ui │ │ ├── FeedReaderConfig.cpp │ │ ├── FeedReaderConfig.h │ │ ├── FeedReaderConfig.ui │ │ ├── FeedReaderDialog.cpp │ │ ├── FeedReaderDialog.h │ │ ├── FeedReaderDialog.ui │ │ ├── FeedReaderFeedItem.cpp │ │ ├── FeedReaderFeedItem.h │ │ ├── FeedReaderFeedItem.ui │ │ ├── FeedReaderFeedNotify.cpp │ │ ├── FeedReaderFeedNotify.h │ │ ├── FeedReaderMessageWidget.cpp │ │ ├── FeedReaderMessageWidget.h │ │ ├── FeedReaderMessageWidget.ui │ │ ├── FeedReaderNotify.cpp │ │ ├── FeedReaderNotify.h │ │ ├── FeedReaderStringDefs.cpp │ │ ├── FeedReaderStringDefs.h │ │ ├── FeedReaderUserNotify.cpp │ │ ├── FeedReaderUserNotify.h │ │ ├── FeedReader_images.qrc │ │ ├── PreviewFeedDialog.cpp │ │ ├── PreviewFeedDialog.h │ │ ├── PreviewFeedDialog.ui │ │ └── images │ │ │ ├── Feed.png │ │ │ ├── FeedAdd.png │ │ │ ├── FeedErrorOverlay.png │ │ │ ├── FeedMsgDelete.png │ │ │ ├── FeedMsgRead.png │ │ │ ├── FeedMsgReadAll.png │ │ │ ├── FeedMsgUnread.png │ │ │ ├── FeedNewOverlay.png │ │ │ ├── FeedProcess.png │ │ │ ├── FeedProcessOverlay.png │ │ │ ├── FeedReader.png │ │ │ ├── Folder.png │ │ │ ├── FolderAdd.png │ │ │ ├── Link.png │ │ │ ├── Root.png │ │ │ └── Update.png │ ├── interface │ │ └── rsFeedReader.h │ ├── lang │ │ ├── FeedReader_ca_ES.qm │ │ ├── FeedReader_ca_ES.ts │ │ ├── FeedReader_cs.qm │ │ ├── FeedReader_cs.ts │ │ ├── FeedReader_da.qm │ │ ├── FeedReader_da.ts │ │ ├── FeedReader_de.qm │ │ ├── FeedReader_de.ts │ │ ├── FeedReader_el.qm │ │ ├── FeedReader_el.ts │ │ ├── FeedReader_en.qm │ │ ├── FeedReader_en.ts │ │ ├── FeedReader_es.qm │ │ ├── FeedReader_es.ts │ │ ├── FeedReader_fi.qm │ │ ├── FeedReader_fi.ts │ │ ├── FeedReader_fr.qm │ │ ├── FeedReader_fr.ts │ │ ├── FeedReader_hu.qm │ │ ├── FeedReader_hu.ts │ │ ├── FeedReader_it.qm │ │ ├── FeedReader_it.ts │ │ ├── FeedReader_ja_JP.qm │ │ ├── FeedReader_ja_JP.ts │ │ ├── FeedReader_ko.qm │ │ ├── FeedReader_ko.ts │ │ ├── FeedReader_lang.qrc │ │ ├── FeedReader_nl.qm │ │ ├── FeedReader_nl.ts │ │ ├── FeedReader_pl.qm │ │ ├── FeedReader_pl.ts │ │ ├── FeedReader_ru.qm │ │ ├── FeedReader_ru.ts │ │ ├── FeedReader_sv.qm │ │ ├── FeedReader_sv.ts │ │ ├── FeedReader_tr.qm │ │ ├── FeedReader_tr.ts │ │ ├── FeedReader_zh_CN.qm │ │ └── FeedReader_zh_CN.ts │ ├── qss │ │ ├── FeedReader_Standard.qss │ │ ├── FeedReader_qss.default │ │ └── FeedReader_qss.qrc │ ├── services │ │ ├── p3FeedReader.cc │ │ ├── p3FeedReader.h │ │ ├── p3FeedReaderThread.cc │ │ ├── p3FeedReaderThread.h │ │ ├── rsFeedReaderItems.cc │ │ └── rsFeedReaderItems.h │ └── util │ │ ├── CURLWrapper.cpp │ │ ├── CURLWrapper.h │ │ ├── HTMLWrapper.cpp │ │ ├── HTMLWrapper.h │ │ ├── XMLWrapper.cpp │ │ ├── XMLWrapper.h │ │ ├── XPathWrapper.cpp │ │ └── XPathWrapper.h ├── LinksCloud │ ├── AddLinksDialog.cpp │ ├── AddLinksDialog.h │ ├── AddLinksDialog.ui │ ├── LinksCloud.pro │ ├── LinksCloudPlugin.cpp │ ├── LinksCloudPlugin.h │ ├── LinksCloud_images.qrc │ ├── LinksDialog.cpp │ ├── LinksDialog.h │ ├── LinksDialog.ui │ ├── images │ │ └── irkick.png │ ├── lang │ │ ├── LinksCloud_ca_ES.qm │ │ ├── LinksCloud_ca_ES.ts │ │ ├── LinksCloud_cs.qm │ │ ├── LinksCloud_cs.ts │ │ ├── LinksCloud_da.qm │ │ ├── LinksCloud_da.ts │ │ ├── LinksCloud_de.qm │ │ ├── LinksCloud_de.ts │ │ ├── LinksCloud_el.qm │ │ ├── LinksCloud_el.ts │ │ ├── LinksCloud_en.qm │ │ ├── LinksCloud_en.ts │ │ ├── LinksCloud_es.qm │ │ ├── LinksCloud_es.ts │ │ ├── LinksCloud_fi.qm │ │ ├── LinksCloud_fi.ts │ │ ├── LinksCloud_fr.qm │ │ ├── LinksCloud_fr.ts │ │ ├── LinksCloud_hu.qm │ │ ├── LinksCloud_hu.ts │ │ ├── LinksCloud_it.qm │ │ ├── LinksCloud_it.ts │ │ ├── LinksCloud_ja_JP.qm │ │ ├── LinksCloud_ja_JP.ts │ │ ├── LinksCloud_ko.qm │ │ ├── LinksCloud_ko.ts │ │ ├── LinksCloud_lang.qrc │ │ ├── LinksCloud_nl.qm │ │ ├── LinksCloud_nl.ts │ │ ├── LinksCloud_pl.qm │ │ ├── LinksCloud_pl.ts │ │ ├── LinksCloud_ru.qm │ │ ├── LinksCloud_ru.ts │ │ ├── LinksCloud_sv.qm │ │ ├── LinksCloud_sv.ts │ │ ├── LinksCloud_tr.qm │ │ ├── LinksCloud_tr.ts │ │ ├── LinksCloud_zh_CN.qm │ │ └── LinksCloud_zh_CN.ts │ ├── p3ranking.cc │ ├── p3ranking.h │ ├── rsrank.h │ ├── rsrankitems.cc │ └── rsrankitems.h ├── PluginInterface.h ├── VOIP │ ├── README.txt │ ├── VOIP.pro │ ├── VOIPPlugin.cpp │ ├── VOIPPlugin.h │ ├── gui │ │ ├── AudioInputConfig.cpp │ │ ├── AudioInputConfig.h │ │ ├── AudioInputConfig.ui │ │ ├── AudioStats.cpp │ │ ├── AudioStats.h │ │ ├── AudioStats.ui │ │ ├── AudioWizard.cpp │ │ ├── AudioWizard.h │ │ ├── AudioWizard.ui │ │ ├── QVideoDevice.cpp │ │ ├── QVideoDevice.h │ │ ├── SpeexProcessor.cpp │ │ ├── SpeexProcessor.h │ │ ├── VOIPChatWidgetHolder.cpp │ │ ├── VOIPChatWidgetHolder.h │ │ ├── VOIPGUIHandler.cpp │ │ ├── VOIPGUIHandler.h │ │ ├── VOIPNotify.cpp │ │ ├── VOIPNotify.h │ │ ├── VOIPToasterItem.cpp │ │ ├── VOIPToasterItem.h │ │ ├── VOIPToasterItem.ui │ │ ├── VOIPToasterNotify.cpp │ │ ├── VOIPToasterNotify.h │ │ ├── VOIP_images.qrc │ │ ├── VideoProcessor.cpp │ │ ├── VideoProcessor.h │ │ ├── audiodevicehelper.cpp │ │ ├── audiodevicehelper.h │ │ ├── images │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-medium-22.png │ │ │ ├── audio-volume-muted-22.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── call-hold-22.png │ │ │ ├── call-hold.png │ │ │ ├── call-start-22.png │ │ │ ├── call-start.png │ │ │ ├── call-stop-22.png │ │ │ ├── call-stop.png │ │ │ ├── camera-off.png │ │ │ ├── camera-on.png │ │ │ ├── deafened_self.svg │ │ │ ├── muted_self.svg │ │ │ ├── self_undeafened.svg │ │ │ ├── talking_off.svg │ │ │ ├── talking_on.svg │ │ │ ├── video-icon-big.png │ │ │ ├── video-icon-off.png │ │ │ └── video-icon-on.png │ │ └── sounds │ │ │ ├── incomingcall.wav │ │ │ ├── outgoingcall.wav │ │ │ ├── outgoingcallbusy.wav │ │ │ ├── ring3.wav │ │ │ └── ringin.wav │ ├── interface │ │ └── rsVOIP.h │ ├── lang │ │ ├── VOIP_ca_ES.qm │ │ ├── VOIP_ca_ES.ts │ │ ├── VOIP_cs.qm │ │ ├── VOIP_cs.ts │ │ ├── VOIP_da.qm │ │ ├── VOIP_da.ts │ │ ├── VOIP_de.qm │ │ ├── VOIP_de.ts │ │ ├── VOIP_el.qm │ │ ├── VOIP_el.ts │ │ ├── VOIP_en.qm │ │ ├── VOIP_en.ts │ │ ├── VOIP_es.qm │ │ ├── VOIP_es.ts │ │ ├── VOIP_fi.qm │ │ ├── VOIP_fi.ts │ │ ├── VOIP_fr.qm │ │ ├── VOIP_fr.ts │ │ ├── VOIP_hu.qm │ │ ├── VOIP_hu.ts │ │ ├── VOIP_it.qm │ │ ├── VOIP_it.ts │ │ ├── VOIP_ja_JP.qm │ │ ├── VOIP_ja_JP.ts │ │ ├── VOIP_ko.qm │ │ ├── VOIP_ko.ts │ │ ├── VOIP_lang.qrc │ │ ├── VOIP_nl.qm │ │ ├── VOIP_nl.ts │ │ ├── VOIP_pl.qm │ │ ├── VOIP_pl.ts │ │ ├── VOIP_pt_BR.qm │ │ ├── VOIP_pt_BR.ts │ │ ├── VOIP_ru.qm │ │ ├── VOIP_ru.ts │ │ ├── VOIP_sv.qm │ │ ├── VOIP_sv.ts │ │ ├── VOIP_tr.qm │ │ ├── VOIP_tr.ts │ │ ├── VOIP_zh_CN.qm │ │ └── VOIP_zh_CN.ts │ ├── p3Voip.h │ ├── qss │ │ ├── VOIP_Standard.qss │ │ ├── VOIP_qss.default │ │ └── VOIP_qss.qrc │ └── services │ │ ├── p3VOIP.cc │ │ ├── p3VOIP.h │ │ ├── rsVOIPItems.cc │ │ └── rsVOIPItems.h ├── mingw32make.bat └── plugins.pro ├── retroshare-gui └── src │ ├── Doxyfile │ ├── README.txt │ ├── Todo.txt │ ├── Unused │ ├── SFListDelegate.cpp │ └── SFListDelegate.h │ ├── changelog.txt │ ├── control │ ├── bandwidthevent.h │ └── eventtype.h │ ├── gui │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── AboutDialog.ui │ ├── ChatLobbyWidget.cpp │ ├── ChatLobbyWidget.h │ ├── ChatLobbyWidget.ui │ ├── Circles │ │ ├── CirclesDialog.cpp │ │ ├── CirclesDialog.h │ │ ├── CirclesDialog.ui │ │ ├── CreateCircleDialog.cpp │ │ ├── CreateCircleDialog.h │ │ └── CreateCircleDialog.ui │ ├── CreateMsgLinkDialog.cpp │ ├── CreateMsgLinkDialog.h │ ├── CreateMsgLinkDialog.ui │ ├── FileTransfer │ │ ├── DLListDelegate.cpp │ │ ├── DLListDelegate.h │ │ ├── DetailsDialog.cpp │ │ ├── DetailsDialog.h │ │ ├── DetailsDialog.ui │ │ ├── FileTransferInfoWidget.cpp │ │ ├── FileTransferInfoWidget.h │ │ ├── TransferUserNotify.cpp │ │ ├── TransferUserNotify.h │ │ ├── TransfersDialog.cpp │ │ ├── TransfersDialog.h │ │ ├── TransfersDialog.ui │ │ ├── ULListDelegate.cpp │ │ ├── ULListDelegate.h │ │ ├── xprogressbar.cpp │ │ └── xprogressbar.h │ ├── FriendsDialog.cpp │ ├── FriendsDialog.h │ ├── FriendsDialog.ui │ ├── GenCertDialog.cpp │ ├── GenCertDialog.h │ ├── GenCertDialog.ui │ ├── GetStartedDialog.cpp │ ├── GetStartedDialog.h │ ├── GetStartedDialog.ui │ ├── HelpDialog.cpp │ ├── HelpDialog.h │ ├── HelpDialog.ui │ ├── Identity │ │ ├── IdDetailsDialog.cpp │ │ ├── IdDetailsDialog.h │ │ ├── IdDetailsDialog.ui │ │ ├── IdDialog.cpp │ │ ├── IdDialog.h │ │ ├── IdDialog.ui │ │ ├── IdEditDialog.cpp │ │ ├── IdEditDialog.h │ │ └── IdEditDialog.ui │ ├── LogoBar.cpp │ ├── LogoBar.h │ ├── MainPage.cpp │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.ui │ ├── MessagesDialog.cpp │ ├── MessagesDialog.h │ ├── MessagesDialog.ui │ ├── MessengerWindow.cpp │ ├── MessengerWindow.h │ ├── MessengerWindow.ui │ ├── NetworkDialog.cpp │ ├── NetworkDialog.h │ ├── NetworkDialog.ui │ ├── NetworkView.cpp │ ├── NetworkView.h │ ├── NetworkView.ui │ ├── NewsFeed.cpp │ ├── NewsFeed.h │ ├── NewsFeed.ui │ ├── People │ │ ├── CircleItem.cpp │ │ ├── CircleItem.h │ │ ├── CircleWidget.cpp │ │ ├── CircleWidget.h │ │ ├── CircleWidget.ui │ │ ├── GroupListView.cpp │ │ ├── GroupListView.h │ │ ├── IdentityItem.cpp │ │ ├── IdentityItem.h │ │ ├── IdentityWidget.cpp │ │ ├── IdentityWidget.h │ │ ├── IdentityWidget.ui │ │ ├── PeopleDialog.cpp │ │ ├── PeopleDialog.h │ │ └── PeopleDialog.ui │ ├── PhotoShare │ │ ├── AddCommentDialog.cpp │ │ ├── AddCommentDialog.h │ │ ├── AddCommentDialog.ui │ │ ├── AlbumCreateDialog.cpp │ │ ├── AlbumCreateDialog.h │ │ ├── AlbumCreateDialog.ui │ │ ├── AlbumDialog.cpp │ │ ├── AlbumDialog.h │ │ ├── AlbumDialog.ui │ │ ├── AlbumItem.cpp │ │ ├── AlbumItem.h │ │ ├── AlbumItem.ui │ │ ├── PhotoCommentItem.cpp │ │ ├── PhotoCommentItem.h │ │ ├── PhotoCommentItem.ui │ │ ├── PhotoDialog.cpp │ │ ├── PhotoDialog.h │ │ ├── PhotoDialog.ui │ │ ├── PhotoDrop.cpp │ │ ├── PhotoDrop.h │ │ ├── PhotoItem.cpp │ │ ├── PhotoItem.h │ │ ├── PhotoItem.ui │ │ ├── PhotoShare.cpp │ │ ├── PhotoShare.h │ │ ├── PhotoShare.ui │ │ ├── PhotoShareItemHolder.cpp │ │ ├── PhotoShareItemHolder.h │ │ ├── PhotoSlideShow.cpp │ │ ├── PhotoSlideShow.h │ │ ├── PhotoSlideShow.ui │ │ ├── Photo_images.qrc │ │ └── images │ │ │ ├── album_64.png │ │ │ ├── album_create_64.png │ │ │ ├── album_default_128.png │ │ │ ├── album_subscribe.png │ │ │ ├── album_unsubscribe.png │ │ │ ├── folder_images.png │ │ │ ├── friends_album_48.png │ │ │ ├── kuickshow.png │ │ │ ├── kview_24.png │ │ │ ├── kview_32.png │ │ │ ├── kview_48.png │ │ │ ├── kview_64.png │ │ │ ├── my_album_48.png │ │ │ └── subscribed_album_48.png │ ├── PluginManager.cpp │ ├── PluginManager.h │ ├── PluginManagerWidget.cpp │ ├── PluginManagerWidget.h │ ├── PluginsPage.cpp │ ├── PluginsPage.h │ ├── Posted │ │ ├── PostedCreatePostDialog.cpp │ │ ├── PostedCreatePostDialog.h │ │ ├── PostedCreatePostDialog.ui │ │ ├── PostedDialog.cpp │ │ ├── PostedDialog.h │ │ ├── PostedGroupDialog.cpp │ │ ├── PostedGroupDialog.h │ │ ├── PostedItem.cpp │ │ ├── PostedItem.h │ │ ├── PostedItem.ui │ │ ├── PostedListWidget.cpp │ │ ├── PostedListWidget.h │ │ ├── PostedListWidget.ui │ │ ├── PostedUserNotify.cpp │ │ ├── PostedUserNotify.h │ │ ├── Posted_images.qrc │ │ └── images │ │ │ ├── hot_128.png │ │ │ ├── hot_24.png │ │ │ ├── hot_256.png │ │ │ ├── hot_32.png │ │ │ ├── hot_48.png │ │ │ ├── hot_64.png │ │ │ ├── new_128.png │ │ │ ├── new_24.png │ │ │ ├── new_32.png │ │ │ ├── new_48.png │ │ │ ├── new_64.png │ │ │ ├── posted_128.png │ │ │ ├── posted_16.png │ │ │ ├── posted_24.png │ │ │ ├── posted_256.png │ │ │ ├── posted_32.png │ │ │ ├── posted_32_new.png │ │ │ ├── posted_48.png │ │ │ ├── posted_64.png │ │ │ ├── posted_add_128.png │ │ │ ├── posted_add_24.png │ │ │ ├── posted_add_256.png │ │ │ ├── posted_add_32.png │ │ │ ├── posted_add_48.png │ │ │ └── posted_add_64.png │ ├── QuickStartWizard.cpp │ ├── QuickStartWizard.h │ ├── QuickStartWizard.ui │ ├── QuickStartWizard2.ui │ ├── RSHumanReadableDelegate.h │ ├── RemoteDirModel.cpp │ ├── RemoteDirModel.h │ ├── RetroShareLink.cpp │ ├── RetroShareLink.h │ ├── RsAutoUpdatePage.cpp │ ├── SearchDialog.cpp │ ├── SearchDialog.h │ ├── SearchDialog.ui │ ├── SearchTreeWidget.cpp │ ├── SearchTreeWidget.h │ ├── ServicePermissionDialog.cpp │ ├── ServicePermissionDialog.h │ ├── ServicePermissionDialog.ui │ ├── ShareDialog.cpp │ ├── ShareDialog.h │ ├── ShareDialog.ui │ ├── ShareManager.cpp │ ├── ShareManager.h │ ├── ShareManager.ui │ ├── SharedFilesDialog.cpp │ ├── SharedFilesDialog.h │ ├── SharedFilesDialog.ui │ ├── SoundManager.cpp │ ├── SoundManager.h │ ├── StartDialog.cpp │ ├── StartDialog.h │ ├── StartDialog.ui │ ├── TheWire │ │ ├── PulseAddDialog.cpp │ │ ├── PulseAddDialog.h │ │ ├── PulseAddDialog.ui │ │ ├── PulseItem.cpp │ │ ├── PulseItem.h │ │ ├── PulseItem.ui │ │ ├── WireDialog.cpp │ │ ├── WireDialog.h │ │ └── WireDialog.ui │ ├── TrustView.cpp │ ├── TrustView.h │ ├── TrustView.ui │ ├── WikiPoos │ │ ├── WikiAddDialog.cpp │ │ ├── WikiAddDialog.h │ │ ├── WikiAddDialog.ui │ │ ├── WikiDialog.cpp │ │ ├── WikiDialog.h │ │ ├── WikiDialog.ui │ │ ├── WikiEditDialog.cpp │ │ ├── WikiEditDialog.h │ │ ├── WikiEditDialog.ui │ │ ├── Wiki_images.qrc │ │ └── images │ │ │ ├── appointment-new.png │ │ │ ├── appointment-new_64.png │ │ │ ├── arrow-left-double.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right-double.png │ │ │ ├── arrow-right.png │ │ │ ├── book2_128.png │ │ │ ├── book2_16.png │ │ │ ├── book2_32.png │ │ │ ├── book2_48.png │ │ │ ├── book2_64.png │ │ │ ├── republish.png │ │ │ ├── resource-group-new.png │ │ │ ├── resource-group-new_48.png │ │ │ ├── resource-group-new_64.png │ │ │ ├── resource-group.png │ │ │ ├── resource-group_22.png │ │ │ ├── resource-group_64.png │ │ │ ├── story-editor.png │ │ │ ├── story-editor_48.png │ │ │ ├── view-refresh.png │ │ │ ├── wikibook_128.png │ │ │ ├── wikibook_32.png │ │ │ ├── wikibook_48.png │ │ │ └── wikibook_64.png │ ├── advsearch │ │ ├── AdvancedSearchDialog.ui │ │ ├── advancedsearchdialog.cpp │ │ ├── advancedsearchdialog.h │ │ ├── expressionwidget.cpp │ │ ├── expressionwidget.h │ │ ├── expressionwidget.ui │ │ ├── guiexprelement.cpp │ │ └── guiexprelement.h │ ├── chat │ │ ├── ChatDialog.cpp │ │ ├── ChatDialog.h │ │ ├── ChatLobbyDialog.cpp │ │ ├── ChatLobbyDialog.h │ │ ├── ChatLobbyDialog.ui │ │ ├── ChatLobbyUserNotify.cpp │ │ ├── ChatLobbyUserNotify.h │ │ ├── ChatStyle.cpp │ │ ├── ChatStyle.h │ │ ├── ChatTabWidget.cpp │ │ ├── ChatTabWidget.h │ │ ├── ChatTabWidget.ui │ │ ├── ChatUserNotify.cpp │ │ ├── ChatUserNotify.h │ │ ├── ChatWidget.cpp │ │ ├── ChatWidget.h │ │ ├── ChatWidget.ui │ │ ├── CreateLobbyDialog.cpp │ │ ├── CreateLobbyDialog.h │ │ ├── CreateLobbyDialog.ui │ │ ├── PopupChatDialog.cpp │ │ ├── PopupChatDialog.h │ │ ├── PopupChatDialog.ui │ │ ├── PopupChatWindow.cpp │ │ ├── PopupChatWindow.h │ │ ├── PopupChatWindow.ui │ │ ├── PopupDistantChatDialog.cpp │ │ └── PopupDistantChatDialog.h │ ├── common │ │ ├── AvatarDefs.cpp │ │ ├── AvatarDefs.h │ │ ├── AvatarDialog.cpp │ │ ├── AvatarDialog.h │ │ ├── AvatarDialog.ui │ │ ├── AvatarWidget.cpp │ │ ├── AvatarWidget.h │ │ ├── AvatarWidget.ui │ │ ├── DropLineEdit.cpp │ │ ├── DropLineEdit.h │ │ ├── ElidedLabel.cpp │ │ ├── ElidedLabel.h │ │ ├── Emoticons.cpp │ │ ├── Emoticons.h │ │ ├── FeedNotify.cpp │ │ ├── FeedNotify.h │ │ ├── FilesDefs.cpp │ │ ├── FilesDefs.h │ │ ├── FloatingHelpBrowser.cpp │ │ ├── FloatingHelpBrowser.h │ │ ├── FlowLayout.cpp │ │ ├── FlowLayout.h │ │ ├── FriendList.cpp │ │ ├── FriendList.h │ │ ├── FriendList.ui │ │ ├── FriendSelectionDialog.cpp │ │ ├── FriendSelectionDialog.h │ │ ├── FriendSelectionWidget.cpp │ │ ├── FriendSelectionWidget.h │ │ ├── FriendSelectionWidget.ui │ │ ├── GroupDefs.cpp │ │ ├── GroupDefs.h │ │ ├── GroupFlagsWidget.cpp │ │ ├── GroupFlagsWidget.h │ │ ├── GroupSelectionBox.cpp │ │ ├── GroupSelectionBox.h │ │ ├── GroupTreeWidget.cpp │ │ ├── GroupTreeWidget.h │ │ ├── GroupTreeWidget.ui │ │ ├── HashBox.cpp │ │ ├── HashBox.h │ │ ├── HashBox.ui │ │ ├── HeaderFrame.cpp │ │ ├── HeaderFrame.h │ │ ├── HeaderFrame.ui │ │ ├── LineEditClear.cpp │ │ ├── LineEditClear.h │ │ ├── MimeTextEdit.cpp │ │ ├── MimeTextEdit.h │ │ ├── PeerDefs.cpp │ │ ├── PeerDefs.h │ │ ├── PictureFlow.cpp │ │ ├── PictureFlow.h │ │ ├── PopularityDefs.cpp │ │ ├── PopularityDefs.h │ │ ├── RSFeedWidget.cpp │ │ ├── RSFeedWidget.h │ │ ├── RSFeedWidget.ui │ │ ├── RSGraphWidget.cpp │ │ ├── RSGraphWidget.h │ │ ├── RSImageBlockWidget.cpp │ │ ├── RSImageBlockWidget.h │ │ ├── RSImageBlockWidget.ui │ │ ├── RSItemDelegate.cpp │ │ ├── RSItemDelegate.h │ │ ├── RSListWidgetItem.cpp │ │ ├── RSListWidgetItem.h │ │ ├── RSPlainTextEdit.cpp │ │ ├── RSPlainTextEdit.h │ │ ├── RSTabWidget.cpp │ │ ├── RSTabWidget.h │ │ ├── RSTextBrowser.cpp │ │ ├── RSTextBrowser.h │ │ ├── RSTextEdit.cpp │ │ ├── RSTextEdit.h │ │ ├── RSTreeView.cpp │ │ ├── RSTreeView.h │ │ ├── RSTreeWidget.cpp │ │ ├── RSTreeWidget.h │ │ ├── RSTreeWidgetItem.cpp │ │ ├── RSTreeWidgetItem.h │ │ ├── RsBanListDefs.cpp │ │ ├── RsBanListDefs.h │ │ ├── RsBanListToolButton.cpp │ │ ├── RsBanListToolButton.h │ │ ├── RsButtonOnText.cpp │ │ ├── RsButtonOnText.h │ │ ├── RsCollectionDialog.cpp │ │ ├── RsCollectionDialog.h │ │ ├── RsCollectionDialog.ui │ │ ├── RsCollectionFile.cpp │ │ ├── RsCollectionFile.h │ │ ├── RsUrlHandler.cpp │ │ ├── RsUrlHandler.h │ │ ├── StatusDefs.cpp │ │ ├── StatusDefs.h │ │ ├── StyledElidedLabel.cpp │ │ ├── StyledElidedLabel.h │ │ ├── StyledLabel.cpp │ │ ├── StyledLabel.h │ │ ├── SubscribeToolButton.cpp │ │ ├── SubscribeToolButton.h │ │ ├── TagDefs.cpp │ │ ├── TagDefs.h │ │ ├── ToasterNotify.cpp │ │ ├── ToasterNotify.h │ │ ├── UIStateHelper.cpp │ │ ├── UIStateHelper.h │ │ ├── UserNotify.cpp │ │ ├── UserNotify.h │ │ ├── html.cpp │ │ ├── html.h │ │ ├── rwindow.cpp │ │ ├── rwindow.h │ │ ├── vmessagebox.cpp │ │ └── vmessagebox.h │ ├── connect │ │ ├── ConfCertDialog.cpp │ │ ├── ConfCertDialog.h │ │ ├── ConfCertDialog.ui │ │ ├── ConnectFriendWizard.cpp │ │ ├── ConnectFriendWizard.h │ │ ├── ConnectFriendWizard.ui │ │ ├── ConnectProgressDialog.cpp │ │ ├── ConnectProgressDialog.h │ │ ├── ConnectProgressDialog.ui │ │ ├── PGPKeyDialog.cpp │ │ ├── PGPKeyDialog.h │ │ └── PGPKeyDialog.ui │ ├── elastic │ │ ├── arrow.cpp │ │ ├── arrow.h │ │ ├── edge.cpp │ │ ├── edge.h │ │ ├── graphwidget.cpp │ │ ├── graphwidget.h │ │ ├── node.cpp │ │ └── node.h │ ├── feeds │ │ ├── AttachFileItem.cpp │ │ ├── AttachFileItem.h │ │ ├── AttachFileItem.ui │ │ ├── ChatMsgItem.cpp │ │ ├── ChatMsgItem.h │ │ ├── ChatMsgItem.ui │ │ ├── FeedHolder.cpp │ │ ├── FeedHolder.h │ │ ├── FeedItem.cpp │ │ ├── FeedItem.h │ │ ├── GxsChannelGroupItem.cpp │ │ ├── GxsChannelGroupItem.h │ │ ├── GxsChannelGroupItem.ui │ │ ├── GxsChannelPostItem.cpp │ │ ├── GxsChannelPostItem.h │ │ ├── GxsChannelPostItem.ui │ │ ├── GxsForumGroupItem.cpp │ │ ├── GxsForumGroupItem.h │ │ ├── GxsForumGroupItem.ui │ │ ├── GxsForumMsgItem.cpp │ │ ├── GxsForumMsgItem.h │ │ ├── GxsForumMsgItem.ui │ │ ├── MsgItem.cpp │ │ ├── MsgItem.h │ │ ├── MsgItem.ui │ │ ├── NewsFeedUserNotify.cpp │ │ ├── NewsFeedUserNotify.h │ │ ├── PeerItem.cpp │ │ ├── PeerItem.h │ │ ├── PeerItem.ui │ │ ├── PostedGroupItem.cpp │ │ ├── PostedGroupItem.h │ │ ├── PostedGroupItem.ui │ │ ├── SecurityIpItem.cpp │ │ ├── SecurityIpItem.h │ │ ├── SecurityIpItem.ui │ │ ├── SecurityItem.cpp │ │ ├── SecurityItem.h │ │ ├── SecurityItem.ui │ │ ├── SubFileItem.cpp │ │ ├── SubFileItem.h │ │ └── SubFileItem.ui │ ├── groups │ │ ├── CreateGroup.cpp │ │ ├── CreateGroup.h │ │ └── CreateGroup.ui │ ├── gxs │ │ ├── GxsCircleChooser.cpp │ │ ├── GxsCircleChooser.h │ │ ├── GxsCircleLabel.cpp │ │ ├── GxsCircleLabel.h │ │ ├── GxsCommentContainer.cpp │ │ ├── GxsCommentContainer.h │ │ ├── GxsCommentContainer.ui │ │ ├── GxsCommentDialog.cpp │ │ ├── GxsCommentDialog.h │ │ ├── GxsCommentDialog.ui │ │ ├── GxsCommentTreeWidget.cpp │ │ ├── GxsCommentTreeWidget.h │ │ ├── GxsCreateCommentDialog.cpp │ │ ├── GxsCreateCommentDialog.h │ │ ├── GxsCreateCommentDialog.ui │ │ ├── GxsFeedItem.cpp │ │ ├── GxsFeedItem.h │ │ ├── GxsFeedWidget.cpp │ │ ├── GxsFeedWidget.h │ │ ├── GxsGroupDialog.cpp │ │ ├── GxsGroupDialog.h │ │ ├── GxsGroupDialog.ui │ │ ├── GxsGroupFeedItem.cpp │ │ ├── GxsGroupFeedItem.h │ │ ├── GxsGroupFrameDialog.cpp │ │ ├── GxsGroupFrameDialog.h │ │ ├── GxsGroupFrameDialog.ui │ │ ├── GxsGroupShareKey.cpp │ │ ├── GxsGroupShareKey.h │ │ ├── GxsGroupShareKey.ui │ │ ├── GxsIdChooser.cpp │ │ ├── GxsIdChooser.h │ │ ├── GxsIdDetails.cpp │ │ ├── GxsIdDetails.h │ │ ├── GxsIdLabel.cpp │ │ ├── GxsIdLabel.h │ │ ├── GxsIdTreeWidgetItem.cpp │ │ ├── GxsIdTreeWidgetItem.h │ │ ├── GxsMessageFramePostWidget.cpp │ │ ├── GxsMessageFramePostWidget.h │ │ ├── GxsMessageFrameWidget.cpp │ │ ├── GxsMessageFrameWidget.h │ │ ├── GxsUserNotify.cpp │ │ ├── GxsUserNotify.h │ │ ├── RsGxsUpdateBroadcastBase.cpp │ │ ├── RsGxsUpdateBroadcastBase.h │ │ ├── RsGxsUpdateBroadcastPage.cpp │ │ ├── RsGxsUpdateBroadcastPage.h │ │ ├── RsGxsUpdateBroadcastWidget.cpp │ │ ├── RsGxsUpdateBroadcastWidget.h │ │ ├── WikiGroupDialog.cpp │ │ └── WikiGroupDialog.h │ ├── gxschannels │ │ ├── CreateGxsChannelMsg.cpp │ │ ├── CreateGxsChannelMsg.h │ │ ├── CreateGxsChannelMsg.ui │ │ ├── GxsChannelDialog.cpp │ │ ├── GxsChannelDialog.h │ │ ├── GxsChannelFilesStatusWidget.cpp │ │ ├── GxsChannelFilesStatusWidget.h │ │ ├── GxsChannelFilesStatusWidget.ui │ │ ├── GxsChannelFilesWidget.cpp │ │ ├── GxsChannelFilesWidget.h │ │ ├── GxsChannelFilesWidget.ui │ │ ├── GxsChannelGroupDialog.cpp │ │ ├── GxsChannelGroupDialog.h │ │ ├── GxsChannelPostsWidget.cpp │ │ ├── GxsChannelPostsWidget.h │ │ ├── GxsChannelPostsWidget.ui │ │ ├── GxsChannelUserNotify.cpp │ │ └── GxsChannelUserNotify.h │ ├── gxsforums │ │ ├── CreateGxsForumMsg.cpp │ │ ├── CreateGxsForumMsg.h │ │ ├── CreateGxsForumMsg.ui │ │ ├── GxsForumGroupDialog.cpp │ │ ├── GxsForumGroupDialog.h │ │ ├── GxsForumThreadWidget.cpp │ │ ├── GxsForumThreadWidget.h │ │ ├── GxsForumThreadWidget.ui │ │ ├── GxsForumUserNotify.cpp │ │ ├── GxsForumUserNotify.h │ │ ├── GxsForumsDialog.cpp │ │ ├── GxsForumsDialog.h │ │ ├── GxsForumsFillThread.cpp │ │ └── GxsForumsFillThread.h │ ├── help │ │ ├── authors.html │ │ ├── browser │ │ │ ├── helpbrowser.cpp │ │ │ ├── helpbrowser.h │ │ │ ├── helpbrowser.ui │ │ │ ├── helptextbrowser.cpp │ │ │ └── helptextbrowser.h │ │ ├── content │ │ │ ├── content.qrc │ │ │ ├── contents.dtd │ │ │ ├── de │ │ │ │ ├── commandline.html │ │ │ │ ├── contents.xml │ │ │ │ ├── index.html │ │ │ │ ├── links.html │ │ │ │ └── peerdetails.html │ │ │ └── en │ │ │ │ ├── addfriends.html │ │ │ │ ├── advanced.html │ │ │ │ ├── commandline.html │ │ │ │ ├── config.html │ │ │ │ ├── connectfriends.html │ │ │ │ ├── contents.xml │ │ │ │ ├── index.html │ │ │ │ ├── invitefriends.html │ │ │ │ ├── links.html │ │ │ │ └── peerdetails.html │ │ ├── licence.html │ │ ├── thanks.html │ │ └── version.html │ ├── icons.qrc │ ├── icons │ │ ├── add_user_256.png │ │ ├── anonymous_blue_128.png │ │ ├── anonymous_green_128.png │ │ ├── blank_blue_128.png │ │ ├── blank_green_128.png │ │ ├── browsable_blue_128.png │ │ ├── browsable_green_128.png │ │ ├── bullet_green_64.png │ │ ├── bullet_grey_64.png │ │ ├── bullet_red_64.png │ │ ├── bullet_yellow_64.png │ │ ├── channels_128.png │ │ ├── channels_red_128.png │ │ ├── chat_128.png │ │ ├── chat_red_128.png │ │ ├── circles_128.png │ │ ├── friends_128.png │ │ ├── global_switch_off_128.png │ │ ├── global_switch_on_128.png │ │ ├── help_128.png │ │ ├── help_64.png │ │ ├── information_128.png │ │ ├── internet_128.png │ │ ├── knews_128.png │ │ ├── knews_red_128.png │ │ ├── konversation128.png │ │ ├── konversation_128.png │ │ ├── konversation_red_128.png │ │ ├── ktorrent_128.png │ │ ├── ktorrent_red_128.png │ │ ├── logo_0_connected_128.png │ │ ├── logo_128.png │ │ ├── logo_1_connected_128.png │ │ ├── logo_2_connected_128.png │ │ ├── mail_128.png │ │ ├── mail_old_128.png │ │ ├── mail_red_128.png │ │ ├── make_qrc_file.sh │ │ ├── newsfeed128.png │ │ ├── plugins_128.png │ │ ├── posted_128.png │ │ ├── posted_red_128.png │ │ ├── quit_128.png │ │ ├── security_high_128.png │ │ ├── security_low_128.png │ │ ├── security_medium_128.png │ │ ├── star_overlay_128.png │ │ ├── switch00_128.png │ │ ├── switch01_128.png │ │ ├── switch10_128.png │ │ ├── switch11_128.png │ │ ├── system_128.png │ │ ├── tile_checking_48.png │ │ ├── tile_downloaded_48.png │ │ ├── tile_downloading_48.png │ │ └── tile_inactive_48.png │ ├── im_history │ │ ├── IMHistoryItemDelegate.cpp │ │ ├── IMHistoryItemDelegate.h │ │ ├── IMHistoryItemPainter.cpp │ │ ├── IMHistoryItemPainter.h │ │ ├── ImHistoryBrowser.cpp │ │ ├── ImHistoryBrowser.h │ │ └── ImHistoryBrowser.ui │ ├── images.qrc │ ├── images │ │ ├── 64px_help.png │ │ ├── COPYING │ │ ├── Client0.png │ │ ├── Client1.png │ │ ├── Client2.png │ │ ├── Client3.png │ │ ├── Client4.png │ │ ├── Eterm.png │ │ ├── FileTypeAny.png │ │ ├── FileTypeArchive.png │ │ ├── FileTypeAudio.png │ │ ├── FileTypeCDImage.png │ │ ├── FileTypeDocument.png │ │ ├── FileTypePicture.png │ │ ├── FileTypeProgram.png │ │ ├── FileTypeVideo.png │ │ ├── Login Manager.png │ │ ├── RSS_004_32.png │ │ ├── StatisticsDetail.png │ │ ├── StatsCumulative.png │ │ ├── accepted16.png │ │ ├── add-share24.png │ │ ├── add_24x24.png │ │ ├── add_channel24.png │ │ ├── add_channel32.png │ │ ├── add_channel64.png │ │ ├── add_chat24.png │ │ ├── add_image24.png │ │ ├── admin-16.png │ │ ├── admin-24.png │ │ ├── admin-32.png │ │ ├── admin-48.png │ │ ├── advsearch_24x24.png │ │ ├── amsn16.png │ │ ├── anonymous_128_blue.png │ │ ├── anonymous_128_green.png │ │ ├── arrow-left.png │ │ ├── arrow-right.png │ │ ├── attach.png │ │ ├── attachment.png │ │ ├── avatar_background.png │ │ ├── avatar_refused.png │ │ ├── avatar_request.png │ │ ├── avatar_request_unknown.png │ │ ├── avatarstatus-bg-116.png │ │ ├── avatarstatus-bg-70.png │ │ ├── avatarstatus-bg-away-116.png │ │ ├── avatarstatus-bg-away-70.png │ │ ├── avatarstatus-bg-busy-116.png │ │ ├── avatarstatus-bg-busy-70.png │ │ ├── avatarstatus-bg-idle-116.png │ │ ├── avatarstatus-bg-idle-70.png │ │ ├── avatarstatus-bg-offline-116.png │ │ ├── avatarstatus-bg-offline-70.png │ │ ├── avatarstatus-bg-online-116.png │ │ ├── avatarstatus-bg-online-70.png │ │ ├── back.png │ │ ├── backblue.png │ │ ├── backchat.png │ │ ├── backgroundimage.png │ │ ├── backgroundl.png │ │ ├── blank_128_blue.png │ │ ├── blank_128_green.png │ │ ├── blockdevice.png │ │ ├── blockdevice2.png │ │ ├── blue_lock.png │ │ ├── blue_lock_open.png │ │ ├── browsable_128_blue.png │ │ ├── browsable_128_green.png │ │ ├── browse-looking.gif │ │ ├── btn1.png │ │ ├── btn2.png │ │ ├── btn3.png │ │ ├── btn4.png │ │ ├── btn_26.png │ │ ├── btn_26_hover.png │ │ ├── btn_26_pressed.png │ │ ├── btn_27.png │ │ ├── btn_27_hover.png │ │ ├── btn_blue.png │ │ ├── btn_blue_hover.png │ │ ├── btn_green.png │ │ ├── btn_green_hover.png │ │ ├── btn_green_pressed.png │ │ ├── btn_red.png │ │ ├── btn_red_hover.png │ │ ├── btn_red_pressed.png │ │ ├── button_cancel.png │ │ ├── buttonframe.png │ │ ├── calendar.png │ │ ├── cancel.png │ │ ├── channels.png │ │ ├── channels16.png │ │ ├── channels24.png │ │ ├── channels32.png │ │ ├── channels_new.png │ │ ├── channelsblue.png │ │ ├── channelsgreen.png │ │ ├── channelsred.png │ │ ├── channelsyellow.png │ │ ├── chat.png │ │ ├── chat_128.png │ │ ├── chat_22.png │ │ ├── chat_24.png │ │ ├── chat_32.png │ │ ├── chat_48.png │ │ ├── chat_64.png │ │ ├── chat_red24.png │ │ ├── chat_x24.png │ │ ├── circles │ │ │ ├── circles-hi.png │ │ │ ├── circles_128.png │ │ │ ├── circles_32.png │ │ │ └── circles_64.png │ │ ├── close-down.png │ │ ├── close_normal.png │ │ ├── closehover.png │ │ ├── closenormal.png │ │ ├── closepressed.png │ │ ├── combobox_arrow.png │ │ ├── configure.png │ │ ├── connect │ │ │ ├── connectFriendBanner.png │ │ │ ├── connectFriendBanner1.png │ │ │ ├── connectFriendLogo.png │ │ │ ├── connectFriendLogo2.png │ │ │ ├── connectFriendWatermark.png │ │ │ ├── info16.png │ │ │ └── mail_send.png │ │ ├── connect_creating.png │ │ ├── connect_established.png │ │ ├── connect_established_low.png │ │ ├── connect_friend.png │ │ ├── connect_no.png │ │ ├── connection.png │ │ ├── console-big-down.png │ │ ├── console-big-hover.png │ │ ├── console-big-up.png │ │ ├── console-small-down.png │ │ ├── console-small-hover.png │ │ ├── console-small-up.png │ │ ├── contact.png │ │ ├── contact22.png │ │ ├── contact_new.png │ │ ├── contact_new128.png │ │ ├── contact_new22.png │ │ ├── contacts24.png │ │ ├── contactsclosed24.png │ │ ├── copy.png │ │ ├── copyrslink.png │ │ ├── d-chat64.png │ │ ├── decrypt-mail.png │ │ ├── delete.png │ │ ├── deleteall.png │ │ ├── deletemail-pressed.png │ │ ├── deletemail24.png │ │ ├── denied16.png │ │ ├── dht16.png │ │ ├── dht32.png │ │ ├── directoryadd_24x24_shadow.png │ │ ├── directoryremove_24x24_shadow.png │ │ ├── directoryselect_24x24_shadow.png │ │ ├── disabled_plugin_48.png │ │ ├── diskSave.png │ │ ├── document-edit-sign.png │ │ ├── document_save.png │ │ ├── door_in.png │ │ ├── down.png │ │ ├── down_24x24.png │ │ ├── download.png │ │ ├── download16.png │ │ ├── edit-bold.png │ │ ├── edit-clear-history.png │ │ ├── edit-italic.png │ │ ├── edit-underline.png │ │ ├── edit_16.png │ │ ├── edit_24.png │ │ ├── edit_add24.png │ │ ├── edit_remove24.png │ │ ├── emblem-web.png │ │ ├── emoticons │ │ │ └── kopete │ │ │ │ ├── kopete006.png │ │ │ │ ├── kopete007.png │ │ │ │ ├── kopete008.png │ │ │ │ ├── kopete009.png │ │ │ │ ├── kopete010.png │ │ │ │ ├── kopete011.png │ │ │ │ ├── kopete012.png │ │ │ │ ├── kopete013.png │ │ │ │ ├── kopete014.png │ │ │ │ ├── kopete015.png │ │ │ │ ├── kopete016.png │ │ │ │ ├── kopete017.png │ │ │ │ ├── kopete018.png │ │ │ │ ├── kopete019.png │ │ │ │ └── kopete020.png │ │ ├── encrypted16.png │ │ ├── encrypted22.png │ │ ├── encrypted32.png │ │ ├── encrypted48.png │ │ ├── evolution.png │ │ ├── exit_24x24.png │ │ ├── exit_32.png │ │ ├── expand_frame.png │ │ ├── exportpeers_16x16.png │ │ ├── extension.svg │ │ ├── extension_32.png │ │ ├── extension_48.png │ │ ├── feedback_arrow.png │ │ ├── feedback_arrow_hover.png │ │ ├── filecomments.png │ │ ├── filefind.png │ │ ├── fileinfo.png │ │ ├── filename.png │ │ ├── fileopen.png │ │ ├── filepriority.png │ │ ├── filerating0.png │ │ ├── filerating1.png │ │ ├── filerating2.png │ │ ├── filerating3.png │ │ ├── filerating4.png │ │ ├── filerating5.png │ │ ├── fileshare16.png │ │ ├── fileshare24.png │ │ ├── fileshare32.png │ │ ├── fileshare48.png │ │ ├── fileshare64.png │ │ ├── filetype-association.png │ │ ├── find-16.png │ │ ├── find.png │ │ ├── firewall_24.png │ │ ├── flags │ │ │ ├── af.png │ │ │ ├── bg.png │ │ │ ├── ca_ES.png │ │ │ ├── cn.png │ │ │ ├── cs.png │ │ │ ├── da.png │ │ │ ├── de.png │ │ │ ├── dk.png │ │ │ ├── el.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fi.png │ │ │ ├── fr.png │ │ │ ├── hu.png │ │ │ ├── it.png │ │ │ ├── ja_JP.png │ │ │ ├── ko.png │ │ │ ├── nl.png │ │ │ ├── pl.png │ │ │ ├── pt.png │ │ │ ├── ru.png │ │ │ ├── se.png │ │ │ ├── sl.png │ │ │ ├── sv.png │ │ │ ├── tr.png │ │ │ ├── zh_CN.png │ │ │ └── zh_TW.png │ │ ├── folder-draft.png │ │ ├── folder-draft24-pressed.png │ │ ├── folder-draft24.png │ │ ├── folder-inbox-new.png │ │ ├── folder-inbox.png │ │ ├── folder-outbox.png │ │ ├── folder-sent.png │ │ ├── folder-trash.png │ │ ├── folder.png │ │ ├── folder16.png │ │ ├── folder_blueshared.png │ │ ├── folder_doments.png │ │ ├── folder_green.png │ │ ├── folder_grey.png │ │ ├── folder_inbox64.png │ │ ├── folder_music.png │ │ ├── folder_open.png │ │ ├── folder_red.png │ │ ├── folder_video.png │ │ ├── folder_yellow.png │ │ ├── foldermail.png │ │ ├── folderopen.png │ │ ├── fonts.png │ │ ├── forums_new.png │ │ ├── forward.png │ │ ├── friendsfolder24.png │ │ ├── genbackground.png │ │ ├── global_switch_off.png │ │ ├── global_switch_on.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ ├── gohome.png │ │ ├── gpgp_key_generate.png │ │ ├── graph-area.png │ │ ├── graph-blue.png │ │ ├── graph-bluegrey.png │ │ ├── graph-checking.png │ │ ├── graph-downloaded.png │ │ ├── graph-downloading.png │ │ ├── graph-gold.png │ │ ├── graph-indigo.png │ │ ├── graph-lightorange.png │ │ ├── graph-line.png │ │ ├── graph-notdownload.png │ │ ├── graph-orange.png │ │ ├── graph-violet.png │ │ ├── grayled.png │ │ ├── greenled.png │ │ ├── groupchat.png │ │ ├── headerFrame.png │ │ ├── help.png │ │ ├── help │ │ │ ├── addafriend.png │ │ │ ├── addfriendkey.png │ │ │ ├── dhtgreen.png │ │ │ ├── natgreen.png │ │ │ └── natred.png │ │ ├── help24.png │ │ ├── hi128-app-ktorrent.png │ │ ├── hi16-app-ktorrent.png │ │ ├── hi24-app-ktorrent.png │ │ ├── hi32-app-ktorrent.png │ │ ├── hi48-app-kblogger.png │ │ ├── hi48-app-ktorrent.png │ │ ├── hi64-app-kblogger.png │ │ ├── hi64-app-ktorrent.png │ │ ├── hide_frame.png │ │ ├── hide_toolbox_frame.png │ │ ├── highlight.png │ │ ├── hot_0.png │ │ ├── hot_1.png │ │ ├── hot_2.png │ │ ├── hot_3.png │ │ ├── hot_4.png │ │ ├── hot_5.png │ │ ├── identity │ │ │ ├── identities_32.png │ │ │ ├── identities_48.png │ │ │ ├── identities_64.png │ │ │ ├── identity_32.png │ │ │ ├── identity_48.png │ │ │ ├── identity_64.png │ │ │ ├── identity_create_32.png │ │ │ ├── identity_create_64.png │ │ │ ├── identity_delete_32.png │ │ │ ├── identity_edit_24.png │ │ │ ├── identity_edit_32.png │ │ │ ├── identity_edit_48.png │ │ │ └── identity_edit_64.png │ │ ├── im-ban-kick-user.png │ │ ├── im-ban-user.png │ │ ├── im-invisible-user.png │ │ ├── im-kick-user.png │ │ ├── im-user-away.png │ │ ├── im-user-busy.png │ │ ├── im-user-inactive.png │ │ ├── im-user-offline.png │ │ ├── im-user.png │ │ ├── image16.png │ │ ├── imageblocked_24.png │ │ ├── inbox_22.png │ │ ├── info16.png │ │ ├── informations_24x24.png │ │ ├── irkickflash.png │ │ ├── kalarm.png │ │ ├── kbackgammon.png │ │ ├── kblogger.png │ │ ├── kcmsystem24.png │ │ ├── kdmconfig.png │ │ ├── kgames.png │ │ ├── knewsticker24.png │ │ ├── konsole.png │ │ ├── konv_message.png │ │ ├── konv_message2.png │ │ ├── konv_message64.png │ │ ├── konversation.png │ │ ├── konversation128.png │ │ ├── konversation16.png │ │ ├── konversation64.png │ │ ├── ksysguard.png │ │ ├── ksysguard32.png │ │ ├── ktorrent.png │ │ ├── ktorrent32.png │ │ ├── ledoff1.png │ │ ├── ledon1.png │ │ ├── library.png │ │ ├── library16.png │ │ ├── library64.png │ │ ├── library_add.png │ │ ├── library_edit.png │ │ ├── library_view.png │ │ ├── list_bullet_arrow.png │ │ ├── loadcert16.png │ │ ├── loader │ │ │ ├── circleball-16.gif │ │ │ ├── indicator-16.gif │ │ │ ├── indicator-32.gif │ │ │ ├── progress.gif │ │ │ └── readme.txt │ │ ├── locale.png │ │ ├── logo │ │ │ ├── logo_128.png │ │ │ ├── logo_16.png │ │ │ ├── logo_24.png │ │ │ ├── logo_24_0.png │ │ │ ├── logo_24_1.png │ │ │ ├── logo_24_2.png │ │ │ ├── logo_256.png │ │ │ ├── logo_32.png │ │ │ ├── logo_48.png │ │ │ ├── logo_512.png │ │ │ ├── logo_64.ico │ │ │ ├── logo_64.png │ │ │ ├── logo_info.png │ │ │ └── logo_splash.png │ │ ├── logobar │ │ │ ├── logo_bar_fill.png │ │ │ ├── logo_bar_start.png │ │ │ ├── rslogo.png │ │ │ ├── rslogo2.png │ │ │ └── rslogoclean.png │ │ ├── looknfeel.png │ │ ├── lphoto.png │ │ ├── lphoto16.png │ │ ├── lphoto24.png │ │ ├── mail-encrypted-full.png │ │ ├── mail-message-new.png │ │ ├── mail-signature-unknown.png │ │ ├── mail-signed-full.png │ │ ├── mail-signed.png │ │ ├── mail_delete.png │ │ ├── mail_forward.png │ │ ├── mail_get.png │ │ ├── mail_new.png │ │ ├── mail_reply.png │ │ ├── mail_replyall.png │ │ ├── mail_send.png │ │ ├── mail_send24.png │ │ ├── mailforward24-hover.png │ │ ├── mailforward24.png │ │ ├── message-mail-forwarded-read.png │ │ ├── message-mail-forwarded.png │ │ ├── message-mail-imapdelete.png │ │ ├── message-mail-new.png │ │ ├── message-mail-read.png │ │ ├── message-mail-replied-forw-read.png │ │ ├── message-mail-replied-forw.png │ │ ├── message-mail-replied-read.png │ │ ├── message-mail-replied.png │ │ ├── message-mail.png │ │ ├── message-news.png │ │ ├── message-state-header.png │ │ ├── message-state-new.png │ │ ├── message-state-read.png │ │ ├── message-state-unread.png │ │ ├── message.png │ │ ├── message_new.png │ │ ├── messenger.png │ │ ├── mimetypes │ │ │ ├── patch.png │ │ │ ├── pdf.png │ │ │ ├── rscollection-16.png │ │ │ ├── source_c.png │ │ │ ├── source_cpp.png │ │ │ └── source_h.png │ │ ├── mute-off-16.png │ │ ├── mute-on-16.png │ │ ├── my_documents_16.png │ │ ├── my_documents_22.png │ │ ├── my_documents_32.png │ │ ├── network.png │ │ ├── network16.png │ │ ├── network32.png │ │ ├── new-mail-alert.png │ │ ├── new_forum16.png │ │ ├── newmsg.png │ │ ├── newsfeed │ │ │ ├── news-feed-32.png │ │ │ └── news-feed-notify-32.png │ │ ├── newsfeed128.png │ │ ├── newsfeed128_notify.png │ │ ├── no_avatar_70.png │ │ ├── no_avatar_background.png │ │ ├── null.png │ │ ├── office-chart-area-stacked.png │ │ ├── office-chart-line.png │ │ ├── openimage.png │ │ ├── orange-bubble-64.png │ │ ├── package_games1.png │ │ ├── pasterslink.png │ │ ├── pause.png │ │ ├── pgp.png │ │ ├── pin32.png │ │ ├── player_play.png │ │ ├── preview.png │ │ ├── print24.png │ │ ├── priorityauto.png │ │ ├── priorityhigh.png │ │ ├── prioritylow.png │ │ ├── prioritynormal.png │ │ ├── priorityquestion.png │ │ ├── quick_restart24.png │ │ ├── quote_24.png │ │ ├── quote_24_hover.png │ │ ├── rate-1.png │ │ ├── rate-2.png │ │ ├── rate-3.png │ │ ├── rate-4.png │ │ ├── rate-5.png │ │ ├── rating.png │ │ ├── rc_combined.png │ │ ├── records.png │ │ ├── redled.png │ │ ├── reload24.png │ │ ├── replymail-hover.png │ │ ├── replymail-pressed.png │ │ ├── replymail24.png │ │ ├── replymailall24-hover.png │ │ ├── replymailall24.png │ │ ├── reset.png │ │ ├── resume.png │ │ ├── retroshare_win.rc │ │ ├── retroshare_win.rc.h │ │ ├── retrotoolbar.png │ │ ├── rs_wizard.png │ │ ├── rsmessenger16.png │ │ ├── rsmessenger32.png │ │ ├── rsmessenger48.png │ │ ├── save24.png │ │ ├── security-high-16.png │ │ ├── security-high-32.png │ │ ├── security-high-48.png │ │ ├── security-high-off-48.png │ │ ├── security-low-48.png │ │ ├── security-low-off-48.png │ │ ├── security-medium-48.png │ │ ├── security-medium-off-48.png │ │ ├── send24-hover.png │ │ ├── send24.png │ │ ├── server_24x24.png │ │ ├── settings.png │ │ ├── settings16.png │ │ ├── share-icon-16.png │ │ ├── share-icon-24.png │ │ ├── share-icon-32.png │ │ ├── show_toolbox_frame.png │ │ ├── sort_decrease.png │ │ ├── sort_incr.png │ │ ├── sound.png │ │ ├── sound_off.png │ │ ├── star-off-16.png │ │ ├── star-on-16.png │ │ ├── start.png │ │ ├── startall.png │ │ ├── status │ │ │ ├── user-away-extended.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-offline.png │ │ │ └── user-online.png │ │ ├── status_unknown.png │ │ ├── stock_signature_bad.png │ │ ├── stock_signature_missing.png │ │ ├── stock_signature_ok.png │ │ ├── stock_signature_unverified.png │ │ ├── stop.png │ │ ├── streaming.png │ │ ├── switch.png │ │ ├── switch00.png │ │ ├── switch01.png │ │ ├── switch10.png │ │ ├── switch11.png │ │ ├── tab-dock.png │ │ ├── tab-new.png │ │ ├── tab-undock.png │ │ ├── tag24.png │ │ ├── tags │ │ │ ├── anon.png │ │ │ ├── dev-ambassador.png │ │ │ ├── dev-patcher.png │ │ │ ├── dev-translator.png │ │ │ ├── developer.png │ │ │ ├── pgp-known.png │ │ │ └── pgp-unknown.png │ │ ├── textedit │ │ │ ├── editcopy.png │ │ │ ├── editcut.png │ │ │ ├── editpaste.png │ │ │ ├── editredo.png │ │ │ ├── editundo.png │ │ │ ├── exportpdf.png │ │ │ ├── filenew.png │ │ │ ├── fileopen.png │ │ │ ├── fileprint.png │ │ │ ├── filesave.png │ │ │ ├── format-list-ordered.png │ │ │ ├── format-list-unordered.png │ │ │ ├── format-text-color.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format_font_size_less.png │ │ │ ├── format_font_size_more.png │ │ │ ├── hi22-action-format-text-blockquote.png │ │ │ ├── hi22-action-format-text-code.png │ │ │ ├── hi22-action-insert-more-mark.png │ │ │ ├── textbold.png │ │ │ ├── textcenter.png │ │ │ ├── textitalic.png │ │ │ ├── textjustify.png │ │ │ ├── textleft.png │ │ │ ├── textright.png │ │ │ ├── textunder.png │ │ │ ├── zoomin.png │ │ │ └── zoomout.png │ │ ├── thumb-default-archive.png │ │ ├── thumb-default-audio.png │ │ ├── thumb-default-docs.png │ │ ├── thumb-default-images.png │ │ ├── thumb-default-iso.png │ │ ├── thumb-default-video.png │ │ ├── toaster │ │ │ ├── backgroundtoaster.png │ │ │ ├── backgroundtoasterblue.png │ │ │ ├── chat.png │ │ │ ├── hangup.png │ │ │ └── pickup.png │ │ ├── toasterDisable.png │ │ ├── toasterEnable.png │ │ ├── tools_wizard.png │ │ ├── tor-logo.png │ │ ├── transfers_new.png │ │ ├── transferupdown.png │ │ ├── trustsettings.png │ │ ├── turtle.png │ │ ├── typing.png │ │ ├── underconstruction.png │ │ ├── up.png │ │ ├── up0down0.png │ │ ├── up0down1.png │ │ ├── up1down0.png │ │ ├── up1down1.png │ │ ├── uploads.png │ │ ├── user.png │ │ ├── user │ │ │ ├── add_group16.png │ │ │ ├── add_group22.png │ │ │ ├── add_group256.png │ │ │ ├── add_group32.png │ │ │ ├── add_group48.png │ │ │ ├── add_user16.png │ │ │ ├── add_user22.png │ │ │ ├── add_user24.png │ │ │ ├── add_user256.png │ │ │ ├── add_user32.png │ │ │ ├── add_user48.png │ │ │ ├── agt_forum128.png │ │ │ ├── agt_forum16.png │ │ │ ├── agt_forum24.png │ │ │ ├── agt_forum32.png │ │ │ ├── agt_forum48 .png │ │ │ ├── agt_forum64.png │ │ │ ├── delete_group16.png │ │ │ ├── delete_user16.png │ │ │ ├── deny_user48.png │ │ │ ├── edit_group64.png │ │ │ ├── friend_suggestion16.png │ │ │ ├── friends128.png │ │ │ ├── friends24.png │ │ │ ├── friends24_notify.png │ │ │ ├── friends32.png │ │ │ ├── friends48.png │ │ │ ├── friends64.png │ │ │ ├── group16.png │ │ │ ├── group24.png │ │ │ ├── identity16.png │ │ │ ├── identity24.png │ │ │ ├── identity24_low.png │ │ │ ├── identity24away.png │ │ │ ├── identity24busy.png │ │ │ ├── identity24idle.png │ │ │ ├── identity32.png │ │ │ ├── identity48.png │ │ │ ├── identityavaible24.png │ │ │ ├── identityavaiblecyan24.png │ │ │ ├── identitygray16.png │ │ │ ├── identityinfo48.png │ │ │ ├── identityinfo64.png │ │ │ ├── identityoffline24.png │ │ │ ├── invite24.png │ │ │ ├── kuser24.png │ │ │ ├── kuser32.png │ │ │ ├── kuser48.png │ │ │ ├── personal128.png │ │ │ ├── personal24.png │ │ │ ├── personal32.png │ │ │ ├── personal64.png │ │ │ ├── remove_user24.png │ │ │ ├── servicepermissions64.png │ │ │ ├── user_request16.png │ │ │ ├── user_request48.png │ │ │ └── user_request_unknown48.png │ │ ├── view-certificate-copy-32.png │ │ ├── view-certificate-export-32.png │ │ ├── view-certificate-sign-32.png │ │ ├── view-certificate-sign-48.png │ │ ├── view-feeds.png │ │ ├── view-files.png │ │ ├── view_calendar_day.png │ │ ├── view_calendar_list.png │ │ ├── view_calendar_month.png │ │ ├── view_calendar_week.png │ │ ├── view_split_top_bottom.png │ │ ├── vote_down.png │ │ ├── vote_up.png │ │ ├── warning_16x16.png │ │ ├── white-bubble-64.png │ │ ├── window_fullscreen.png │ │ ├── window_nofullscreen.png │ │ └── yellowled.png │ ├── linetypes.h │ ├── mainpagestack.cpp │ ├── mainpagestack.h │ ├── msgs │ │ ├── MessageComposer.cpp │ │ ├── MessageComposer.h │ │ ├── MessageComposer.ui │ │ ├── MessageInterface.h │ │ ├── MessageUserNotify.cpp │ │ ├── MessageUserNotify.h │ │ ├── MessageWidget.cpp │ │ ├── MessageWidget.h │ │ ├── MessageWidget.ui │ │ ├── MessageWindow.cpp │ │ ├── MessageWindow.h │ │ ├── MessageWindow.ui │ │ ├── TagsMenu.cpp │ │ ├── TagsMenu.h │ │ └── textformat.h │ ├── notifyqt.cpp │ ├── notifyqt.h │ ├── plugins │ │ └── PluginInterface.h │ ├── profile │ │ ├── ProfileManager.cpp │ │ ├── ProfileManager.h │ │ ├── ProfileManager.ui │ │ ├── ProfileWidget.cpp │ │ ├── ProfileWidget.h │ │ ├── ProfileWidget.ui │ │ ├── StatusMessage.cpp │ │ ├── StatusMessage.h │ │ └── StatusMessage.ui │ ├── qskinobject │ │ ├── qskinobject.h │ │ └── qskinwidgetresizehandler.h │ ├── qss │ │ ├── chat │ │ │ ├── Bubble │ │ │ │ ├── history │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── images.sh │ │ │ │ │ ├── img │ │ │ │ │ │ ├── bubble-blue │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-green │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ └── bubble-red │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ │ ├── color.css │ │ │ │ │ │ └── standard.css │ │ │ │ ├── private │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── images.sh │ │ │ │ │ ├── img │ │ │ │ │ │ ├── bubble-blue │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-green │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ └── bubble-red │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ │ ├── color.css │ │ │ │ │ │ └── standard.css │ │ │ │ ├── public │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── images.sh │ │ │ │ │ ├── img │ │ │ │ │ │ ├── bubble-blue │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-green │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ │ └── bubble-red │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ │ ├── color.css │ │ │ │ │ │ └── standard.css │ │ │ │ └── src │ │ │ │ │ ├── images.sh │ │ │ │ │ ├── img.svg │ │ │ │ │ └── img │ │ │ │ │ ├── bubble-blue │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── bubble-green │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── bubble-grey │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── bubble-orange │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ └── bubble-red │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ └── bubble_tick.png │ │ │ ├── Bubble_Compact │ │ │ │ └── private │ │ │ │ │ ├── Kopie von incoming.htm │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── images.sh │ │ │ │ │ ├── img │ │ │ │ │ ├── bubble-blue │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── bubble-green │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ └── bubble-red │ │ │ │ │ │ ├── bubble_BC.png │ │ │ │ │ │ ├── bubble_BL.png │ │ │ │ │ │ ├── bubble_BR.png │ │ │ │ │ │ ├── bubble_CC.png │ │ │ │ │ │ ├── bubble_CL.png │ │ │ │ │ │ ├── bubble_CR.png │ │ │ │ │ │ ├── bubble_TC.png │ │ │ │ │ │ ├── bubble_TL.png │ │ │ │ │ │ ├── bubble_TR.png │ │ │ │ │ │ ├── bubble_tick-left.png │ │ │ │ │ │ ├── bubble_tick-right.png │ │ │ │ │ │ └── bubble_tick.png │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ ├── color.css │ │ │ │ │ └── standard.css │ │ │ ├── __MACOSX__Bubble │ │ │ │ ├── history │ │ │ │ │ ├── ._hincoming.htm │ │ │ │ │ ├── ._houtgoing.htm │ │ │ │ │ ├── ._images.sh │ │ │ │ │ ├── ._img │ │ │ │ │ ├── ._incoming.htm │ │ │ │ │ ├── ._info.xml │ │ │ │ │ ├── ._main.css │ │ │ │ │ ├── ._ooutgoing.htm │ │ │ │ │ ├── ._outgoing.htm │ │ │ │ │ ├── ._system.htm │ │ │ │ │ ├── ._variants │ │ │ │ │ ├── img │ │ │ │ │ │ ├── ._bubble-grey │ │ │ │ │ │ ├── ._bubble-orange │ │ │ │ │ │ ├── ._bubble-red │ │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ │ └── bubble-red │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ └── variants │ │ │ │ │ │ ├── ._color.css │ │ │ │ │ │ └── ._standard.css │ │ │ │ ├── private │ │ │ │ │ ├── ._.DS_Store │ │ │ │ │ ├── ._hincoming.htm │ │ │ │ │ ├── ._houtgoing.htm │ │ │ │ │ ├── ._images.sh │ │ │ │ │ ├── ._img │ │ │ │ │ ├── ._incoming.htm │ │ │ │ │ ├── ._info.xml │ │ │ │ │ ├── ._main.css │ │ │ │ │ ├── ._ooutgoing.htm │ │ │ │ │ ├── ._outgoing.htm │ │ │ │ │ ├── ._system.htm │ │ │ │ │ ├── ._variants │ │ │ │ │ ├── img │ │ │ │ │ │ ├── ._bubble-grey │ │ │ │ │ │ ├── ._bubble-orange │ │ │ │ │ │ ├── ._bubble-red │ │ │ │ │ │ ├── bubble-blue │ │ │ │ │ │ │ └── ._.DS_Store │ │ │ │ │ │ ├── bubble-green │ │ │ │ │ │ │ └── ._.DS_Store │ │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ │ └── bubble-red │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ └── variants │ │ │ │ │ │ ├── ._color.css │ │ │ │ │ │ └── ._standard.css │ │ │ │ ├── public │ │ │ │ │ ├── ._hincoming.htm │ │ │ │ │ ├── ._houtgoing.htm │ │ │ │ │ ├── ._images.sh │ │ │ │ │ ├── ._img │ │ │ │ │ ├── ._incoming.htm │ │ │ │ │ ├── ._info.xml │ │ │ │ │ ├── ._main.css │ │ │ │ │ ├── ._ooutgoing.htm │ │ │ │ │ ├── ._outgoing.htm │ │ │ │ │ ├── ._system.htm │ │ │ │ │ ├── ._variants │ │ │ │ │ ├── img │ │ │ │ │ │ ├── ._bubble-grey │ │ │ │ │ │ ├── ._bubble-orange │ │ │ │ │ │ ├── ._bubble-red │ │ │ │ │ │ ├── bubble-blue │ │ │ │ │ │ │ └── ._.DS_Store │ │ │ │ │ │ ├── bubble-green │ │ │ │ │ │ │ └── ._.DS_Store │ │ │ │ │ │ ├── bubble-grey │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ │ ├── bubble-orange │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ │ └── bubble-red │ │ │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ └── variants │ │ │ │ │ │ ├── ._color.css │ │ │ │ │ │ └── ._standard.css │ │ │ │ └── src │ │ │ │ │ ├── ._images.sh │ │ │ │ │ ├── ._img │ │ │ │ │ └── img │ │ │ │ │ ├── ._bubble-grey │ │ │ │ │ ├── ._bubble-orange │ │ │ │ │ ├── ._bubble-red │ │ │ │ │ ├── bubble-blue │ │ │ │ │ └── ._.DS_Store │ │ │ │ │ ├── bubble-green │ │ │ │ │ └── ._.DS_Store │ │ │ │ │ ├── bubble-grey │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ ├── bubble-orange │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ └── ._bubble_tick.png │ │ │ │ │ └── bubble-red │ │ │ │ │ ├── ._bubble_BC.png │ │ │ │ │ ├── ._bubble_BL.png │ │ │ │ │ ├── ._bubble_BR.png │ │ │ │ │ ├── ._bubble_CC.png │ │ │ │ │ ├── ._bubble_CL.png │ │ │ │ │ ├── ._bubble_CR.png │ │ │ │ │ ├── ._bubble_TC.png │ │ │ │ │ ├── ._bubble_TL.png │ │ │ │ │ ├── ._bubble_TR.png │ │ │ │ │ ├── ._bubble_tick-left.png │ │ │ │ │ ├── ._bubble_tick-right.png │ │ │ │ │ └── ._bubble_tick.png │ │ │ ├── compact │ │ │ │ ├── history │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ │ └── Standard.css │ │ │ │ ├── private │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ │ ├── Colored.css │ │ │ │ │ │ └── Standard.css │ │ │ │ └── public │ │ │ │ │ ├── hincoming.htm │ │ │ │ │ ├── houtgoing.htm │ │ │ │ │ ├── incoming.htm │ │ │ │ │ ├── info.xml │ │ │ │ │ ├── main.css │ │ │ │ │ ├── ooutgoing.htm │ │ │ │ │ ├── outgoing.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ └── variants │ │ │ │ │ ├── Colored.css │ │ │ │ │ └── Standard.css │ │ │ └── standard │ │ │ │ ├── history │ │ │ │ ├── hincoming.htm │ │ │ │ ├── houtgoing.htm │ │ │ │ ├── incoming.htm │ │ │ │ ├── info.xml │ │ │ │ ├── main.css │ │ │ │ ├── ooutgoing.htm │ │ │ │ ├── outgoing.htm │ │ │ │ ├── system.htm │ │ │ │ └── variants │ │ │ │ │ └── Standard.css │ │ │ │ ├── private │ │ │ │ ├── hincoming.htm │ │ │ │ ├── houtgoing.htm │ │ │ │ ├── incoming.htm │ │ │ │ ├── info.xml │ │ │ │ ├── main.css │ │ │ │ ├── ooutgoing.htm │ │ │ │ ├── outgoing.htm │ │ │ │ ├── system.htm │ │ │ │ └── variants │ │ │ │ │ └── Standard.css │ │ │ │ └── public │ │ │ │ ├── hincoming.htm │ │ │ │ ├── houtgoing.htm │ │ │ │ ├── incoming.htm │ │ │ │ ├── info.xml │ │ │ │ ├── main.css │ │ │ │ ├── ooutgoing.htm │ │ │ │ ├── outgoing.htm │ │ │ │ ├── system.htm │ │ │ │ └── variants │ │ │ │ └── Standard.css │ │ └── stylesheet │ │ │ ├── Standard.qss │ │ │ └── qss.default │ ├── settings │ │ ├── AddFileAssociationDialog.cpp │ │ ├── AddFileAssociationDialog.h │ │ ├── AppearancePage.cpp │ │ ├── AppearancePage.h │ │ ├── AppearancePage.ui │ │ ├── ChannelPage.cpp │ │ ├── ChannelPage.h │ │ ├── ChannelPage.ui │ │ ├── ChatPage.cpp │ │ ├── ChatPage.h │ │ ├── ChatPage.ui │ │ ├── CryptoPage.cpp │ │ ├── CryptoPage.h │ │ ├── CryptoPage.ui │ │ ├── DirectoriesPage.cpp │ │ ├── DirectoriesPage.h │ │ ├── DirectoriesPage.ui │ │ ├── FileAssociationsPage.cpp │ │ ├── FileAssociationsPage.h │ │ ├── ForumPage.cpp │ │ ├── ForumPage.h │ │ ├── ForumPage.ui │ │ ├── GeneralPage.cpp │ │ ├── GeneralPage.h │ │ ├── GeneralPage.ui │ │ ├── GroupFrameSettingsWidget.cpp │ │ ├── GroupFrameSettingsWidget.h │ │ ├── GroupFrameSettingsWidget.ui │ │ ├── MessagePage.cpp │ │ ├── MessagePage.h │ │ ├── MessagePage.ui │ │ ├── NetworkPage.cpp │ │ ├── NetworkPage.h │ │ ├── NetworkPage.ui │ │ ├── NewTag.cpp │ │ ├── NewTag.h │ │ ├── NewTag.ui │ │ ├── NotifyPage.cpp │ │ ├── NotifyPage.h │ │ ├── NotifyPage.ui │ │ ├── PluginItem.cpp │ │ ├── PluginItem.h │ │ ├── PluginItem.ui │ │ ├── PluginsPage.cpp │ │ ├── PluginsPage.h │ │ ├── PluginsPage.ui │ │ ├── PostedPage.cpp │ │ ├── PostedPage.h │ │ ├── PostedPage.ui │ │ ├── RSPermissionMatrixWidget.cpp │ │ ├── RSPermissionMatrixWidget.h │ │ ├── RelayPage.cpp │ │ ├── RelayPage.h │ │ ├── RelayPage.ui │ │ ├── RsharePeerSettings.cpp │ │ ├── RsharePeerSettings.h │ │ ├── ServerPage.cpp │ │ ├── ServerPage.h │ │ ├── ServerPage.ui │ │ ├── ServicePermissionsPage.cpp │ │ ├── ServicePermissionsPage.h │ │ ├── ServicePermissionsPage.ui │ │ ├── SoundPage.cpp │ │ ├── SoundPage.h │ │ ├── SoundPage.ui │ │ ├── TransferPage.cpp │ │ ├── TransferPage.h │ │ ├── TransferPage.ui │ │ ├── WebuiPage.cpp │ │ ├── WebuiPage.h │ │ ├── WebuiPage.ui │ │ ├── rsettings.cpp │ │ ├── rsettings.h │ │ ├── rsettingswin.cpp │ │ ├── rsettingswin.h │ │ ├── rsharesettings.cpp │ │ ├── rsharesettings.h │ │ └── settings.ui │ ├── smileys │ │ ├── act-up.png │ │ ├── afraid.png │ │ ├── airplane.png │ │ ├── alien.png │ │ ├── amorous.png │ │ ├── angel.png │ │ ├── angry.png │ │ ├── arrogant.png │ │ ├── at-wits-end.png │ │ ├── bad.png │ │ ├── bashful.png │ │ ├── beat-up.png │ │ ├── beauty.png │ │ ├── beer.png │ │ ├── blowkiss.png │ │ ├── bomb.png │ │ ├── bored.png │ │ ├── bowl.png │ │ ├── boy.png │ │ ├── brb.png │ │ ├── bulgy-eyes.png │ │ ├── bunny.png │ │ ├── bye.png │ │ ├── cake.png │ │ ├── call-me.png │ │ ├── camera.png │ │ ├── can.png │ │ ├── car.png │ │ ├── cat.png │ │ ├── chicken.png │ │ ├── chilli.png │ │ ├── cigarette.png │ │ ├── clap.png │ │ ├── clock.png │ │ ├── cloudy.png │ │ ├── clover.png │ │ ├── clown.png │ │ ├── coffee.png │ │ ├── coins.png │ │ ├── cold.png │ │ ├── computer.png │ │ ├── confused.png │ │ ├── console.png │ │ ├── cool.png │ │ ├── cow.png │ │ ├── cowboy.png │ │ ├── crying.png │ │ ├── curl-lip.png │ │ ├── curse.png │ │ ├── cute.png │ │ ├── cyclops.png │ │ ├── dance.png │ │ ├── dazed.png │ │ ├── desire.png │ │ ├── devil.png │ │ ├── disappointed.png │ │ ├── disdain.png │ │ ├── doctor.png │ │ ├── dog.png │ │ ├── doh.png │ │ ├── dont-know.png │ │ ├── drink.png │ │ ├── drool.png │ │ ├── embarrassed.png │ │ ├── emotes.acs │ │ ├── excited.png │ │ ├── excruciating.png │ │ ├── eyeroll.png │ │ ├── face-devil-grin48.png │ │ ├── female-fighter.png │ │ ├── film.png │ │ ├── fingers-crossed.png │ │ ├── flag.png │ │ ├── foot-in-mouth.png │ │ ├── freaked-out.png │ │ ├── ghost.png │ │ ├── giggle.png │ │ ├── girl.png │ │ ├── glasses-cool.png │ │ ├── glasses-nerdy.png │ │ ├── go-away.png │ │ ├── goat.png │ │ ├── good.png │ │ ├── hammer.png │ │ ├── handcuffs.png │ │ ├── handshake.png │ │ ├── happy.png │ │ ├── highfive.png │ │ ├── hot.png │ │ ├── hug-left.png │ │ ├── hug-right.png │ │ ├── hungry.png │ │ ├── hypnotized.png │ │ ├── in-love.png │ │ ├── island.png │ │ ├── jump.png │ │ ├── kiss.png │ │ ├── kissed.png │ │ ├── kissing.png │ │ ├── knife.png │ │ ├── lamp.png │ │ ├── lashes.png │ │ ├── laugh.png │ │ ├── liquor.png │ │ ├── lol.png │ │ ├── loser.png │ │ ├── love-over.png │ │ ├── love.png │ │ ├── lying.png │ │ ├── mad-tongue.png │ │ ├── mail.png │ │ ├── male-fighter1.png │ │ ├── male-fighter2.png │ │ ├── mean.png │ │ ├── meeting.png │ │ ├── messed.png │ │ ├── mobile.png │ │ ├── mohawk.png │ │ ├── moneymouth.png │ │ ├── monkey.png │ │ ├── moon.png │ │ ├── mrgreen.png │ │ ├── music.png │ │ ├── musical-note.png │ │ ├── nervous.png │ │ ├── neutral.png │ │ ├── on-the-phone.png │ │ ├── party.png │ │ ├── peace.png │ │ ├── phone.png │ │ ├── pig.png │ │ ├── pill.png │ │ ├── pirate.png │ │ ├── pissed-off.png │ │ ├── pizza.png │ │ ├── plate.png │ │ ├── poop.png │ │ ├── pouty.png │ │ ├── pray.png │ │ ├── present.png │ │ ├── pumpkin.png │ │ ├── qq.png │ │ ├── question.png │ │ ├── quiet.png │ │ ├── rain.png │ │ ├── rainbow.png │ │ ├── rose-dead.png │ │ ├── rose.png │ │ ├── rotfl.png │ │ ├── sad.png │ │ ├── sarcastic.png │ │ ├── search.png │ │ ├── secret.png │ │ ├── shame.png │ │ ├── sheep.png │ │ ├── shocked.png │ │ ├── shout.png │ │ ├── shut-mouth.png │ │ ├── sick.png │ │ ├── sidefrown.png │ │ ├── silly.png │ │ ├── sinister.png │ │ ├── skeleton.png │ │ ├── skywalker.png │ │ ├── sleeping.png │ │ ├── sleepy.png │ │ ├── smile.png │ │ ├── smirk.png │ │ ├── snail.png │ │ ├── snicker.png │ │ ├── snowman.png │ │ ├── soccerball.png │ │ ├── soldier.png │ │ ├── star.png │ │ ├── starving.png │ │ ├── stop.png │ │ ├── stressed.png │ │ ├── struggle.png │ │ ├── sun.png │ │ ├── surprised.png │ │ ├── talktohand.png │ │ ├── teeth.png │ │ ├── terror.png │ │ ├── theme │ │ ├── thinking.png │ │ ├── thunder.png │ │ ├── time-out.png │ │ ├── tongue.png │ │ ├── turtle.png │ │ ├── tv.png │ │ ├── umbrella.png │ │ ├── vampire.png │ │ ├── victory.png │ │ ├── waiting.png │ │ ├── watermelon.png │ │ ├── waving.png │ │ ├── weather-clear-night.png │ │ ├── weather-clear.png │ │ ├── weather-few-clouds-night.png │ │ ├── weather-few-clouds.png │ │ ├── weather-overcast.png │ │ ├── weather-severe-alert.png │ │ ├── weather-showers-scattered.png │ │ ├── weather-showers.png │ │ ├── weather-snow.png │ │ ├── weather-storm.png │ │ ├── weep.png │ │ ├── wilt.png │ │ ├── wink.png │ │ ├── worship.png │ │ └── yin-yang.png │ ├── statistics │ │ ├── BWGraph.cpp │ │ ├── BWGraph.h │ │ ├── BandwidthGraphWindow.cpp │ │ ├── BandwidthGraphWindow.h │ │ ├── BandwidthGraphWindow.ui │ │ ├── BandwidthStatsWidget.cpp │ │ ├── BandwidthStatsWidget.h │ │ ├── BandwidthStatsWidget.ui │ │ ├── BwCtrlWindow.cpp │ │ ├── BwCtrlWindow.h │ │ ├── BwCtrlWindow.ui │ │ ├── DhtWindow.cpp │ │ ├── DhtWindow.h │ │ ├── DhtWindow.ui │ │ ├── GlobalRouterStatistics.cpp │ │ ├── GlobalRouterStatistics.h │ │ ├── GlobalRouterStatistics.ui │ │ ├── OutQueueStatistics.cpp │ │ ├── OutQueueStatistics.h │ │ ├── RttStatistics.cpp │ │ ├── RttStatistics.h │ │ ├── RttStatistics.ui │ │ ├── StatisticsWindow.cpp │ │ ├── StatisticsWindow.h │ │ ├── StatisticsWindow.ui │ │ ├── TurtleRouterDialog.cpp │ │ ├── TurtleRouterDialog.h │ │ ├── TurtleRouterDialog.ui │ │ ├── TurtleRouterStatistics.cpp │ │ ├── TurtleRouterStatistics.h │ │ ├── TurtleRouterStatistics.ui │ │ ├── dhtgraph.cpp │ │ ├── dhtgraph.h │ │ └── turtlegraph.h │ ├── statusbar │ │ ├── OpModeStatus.cpp │ │ ├── OpModeStatus.h │ │ ├── SoundStatus.cpp │ │ ├── SoundStatus.h │ │ ├── SysTrayStatus.cpp │ │ ├── SysTrayStatus.h │ │ ├── ToasterDisable.cpp │ │ ├── ToasterDisable.h │ │ ├── dhtstatus.cpp │ │ ├── dhtstatus.h │ │ ├── discstatus.cpp │ │ ├── discstatus.h │ │ ├── hashingstatus.cpp │ │ ├── hashingstatus.h │ │ ├── natstatus.cpp │ │ ├── natstatus.h │ │ ├── peerstatus.cpp │ │ ├── peerstatus.h │ │ ├── ratesstatus.cpp │ │ └── ratesstatus.h │ ├── style │ │ ├── RSStyle.cpp │ │ ├── RSStyle.h │ │ ├── StyleDialog.cpp │ │ ├── StyleDialog.h │ │ └── StyleDialog.ui │ ├── toaster │ │ ├── ChatLobbyToaster.cpp │ │ ├── ChatLobbyToaster.h │ │ ├── ChatLobbyToaster.ui │ │ ├── ChatToaster.cpp │ │ ├── ChatToaster.h │ │ ├── ChatToaster.ui │ │ ├── DownloadToaster.cpp │ │ ├── DownloadToaster.h │ │ ├── DownloadToaster.ui │ │ ├── FriendRequestToaster.cpp │ │ ├── FriendRequestToaster.h │ │ ├── FriendRequestToaster.ui │ │ ├── GroupChatToaster.cpp │ │ ├── GroupChatToaster.h │ │ ├── GroupChatToaster.ui │ │ ├── MessageToaster.cpp │ │ ├── MessageToaster.h │ │ ├── MessageToaster.ui │ │ ├── OnlineToaster.cpp │ │ ├── OnlineToaster.h │ │ ├── OnlineToaster.ui │ │ ├── ToasterItem.cpp │ │ └── ToasterItem.h │ └── unfinished │ │ ├── ApplicationWindow.cpp │ │ ├── ApplicationWindow.h │ │ ├── ApplicationWindow.ui │ │ ├── CalDialog.cpp │ │ ├── CalDialog.h │ │ ├── CalDialog.ui │ │ ├── ExampleDialog.cpp │ │ ├── ExampleDialog.h │ │ ├── ExampleDialog.ui │ │ ├── GamesDialog.cpp │ │ ├── GamesDialog.h │ │ ├── GamesDialog.ui │ │ ├── LibraryDialog.cpp │ │ ├── LibraryDialog.h │ │ ├── LibraryDialog.ui │ │ ├── PhotoDialog.cpp │ │ ├── PhotoDialog.h │ │ ├── PhotoDialog.ui │ │ ├── PhotoShow.cpp │ │ ├── PhotoShow.h │ │ ├── PhotoShow.ui │ │ ├── StatisticDialog.cpp │ │ ├── StatisticDialog.h │ │ ├── StatisticDialog.ui │ │ └── profile │ │ ├── ProfileEdit.cpp │ │ ├── ProfileEdit.h │ │ ├── ProfileEdit.ui │ │ ├── ProfileView.cpp │ │ ├── ProfileView.h │ │ └── ProfileView.ui │ ├── idle │ ├── idle.cpp │ ├── idle.h │ └── idle_platform.cpp │ ├── lang │ ├── lang.qrc │ ├── languagesupport.cpp │ ├── languagesupport.h │ ├── retroshare_af.qm │ ├── retroshare_af.ts │ ├── retroshare_ar.ts │ ├── retroshare_bg.qm │ ├── retroshare_bg.ts │ ├── retroshare_ca_ES.qm │ ├── retroshare_ca_ES.ts │ ├── retroshare_cs.qm │ ├── retroshare_cs.ts │ ├── retroshare_cy.qm │ ├── retroshare_cy.ts │ ├── retroshare_da.qm │ ├── retroshare_da.ts │ ├── retroshare_de.qm │ ├── retroshare_de.ts │ ├── retroshare_el.qm │ ├── retroshare_el.ts │ ├── retroshare_en.qm │ ├── retroshare_en.ts │ ├── retroshare_es.qm │ ├── retroshare_es.ts │ ├── retroshare_fi.qm │ ├── retroshare_fi.ts │ ├── retroshare_fr.qm │ ├── retroshare_fr.ts │ ├── retroshare_hu.qm │ ├── retroshare_hu.ts │ ├── retroshare_it.qm │ ├── retroshare_it.ts │ ├── retroshare_ja_JP.qm │ ├── retroshare_ja_JP.ts │ ├── retroshare_ko.qm │ ├── retroshare_ko.ts │ ├── retroshare_nl.qm │ ├── retroshare_nl.ts │ ├── retroshare_pl.qm │ ├── retroshare_pl.ts │ ├── retroshare_pt.qm │ ├── retroshare_pt.ts │ ├── retroshare_ru.qm │ ├── retroshare_ru.ts │ ├── retroshare_sl.qm │ ├── retroshare_sl.ts │ ├── retroshare_sr.qm │ ├── retroshare_sr.ts │ ├── retroshare_sv.qm │ ├── retroshare_sv.ts │ ├── retroshare_tr.qm │ ├── retroshare_tr.ts │ ├── retroshare_zh_CN.qm │ ├── retroshare_zh_CN.ts │ ├── retroshare_zh_TW.qm │ └── retroshare_zh_TW.ts │ ├── license │ ├── license-FR.txt │ ├── license-GER.txt │ ├── license-GR.txt │ ├── license-IT.txt │ ├── license-PT_BR.txt │ ├── license-SP.txt │ ├── license-TR.txt │ └── license.txt │ ├── main.cpp │ ├── mingw32make.bat │ ├── qss │ ├── blacknight.qss │ ├── blacknight │ │ ├── check_sel.png │ │ ├── check_unsel.png │ │ ├── clbg.png │ │ ├── down.png │ │ ├── radio_sel.png │ │ ├── radio_unsel.png │ │ └── up.png │ ├── blue.qss │ ├── blue │ │ ├── blue.png │ │ ├── blue2.png │ │ ├── tab1.png │ │ └── tabselected.png │ ├── groove.qss │ ├── orangesurfer.qss │ ├── orangesurfer │ │ ├── border.png │ │ ├── main.png │ │ ├── main2.png │ │ ├── sizegrip.png │ │ ├── tab_hover.png │ │ ├── tab_normal.png │ │ ├── tab_pressed.png │ │ └── toolbar.png │ ├── qdarkstyle.qss │ ├── qdarkstyle │ │ ├── Hmovetoolbar.png │ │ ├── Hsepartoolbar.png │ │ ├── Vmovetoolbar.png │ │ ├── Vsepartoolbar.png │ │ ├── branch_closed-on.png │ │ ├── branch_closed.png │ │ ├── branch_open-on.png │ │ ├── branch_open.png │ │ ├── checkbox.png │ │ ├── close.png │ │ ├── down_arrow.png │ │ ├── down_arrow_disabled.png │ │ ├── left_arrow.png │ │ ├── left_arrow_disabled.png │ │ ├── right_arrow.png │ │ ├── right_arrow_disabled.png │ │ ├── sizegrip.png │ │ ├── stylesheet-branch-end.png │ │ ├── stylesheet-branch-more.png │ │ ├── stylesheet-vline.png │ │ ├── transparent.png │ │ ├── undock.png │ │ ├── up_arrow.png │ │ └── up_arrow_disabled.png │ ├── qlive.qss │ ├── qlive │ │ ├── qb.png │ │ └── qb2.png │ ├── redscorpion.qss │ ├── redscorpion │ │ ├── red.png │ │ └── red2.png │ ├── silver.qss │ ├── silver │ │ ├── silver.png │ │ └── silver2.png │ ├── silvergrey.qss │ ├── uus.qss │ ├── uus │ │ ├── uus.png │ │ └── uus2.png │ ├── wx.qss │ ├── wx │ │ └── wx.png │ ├── yaba.qss │ ├── yaba │ │ ├── yaba.png │ │ ├── yaba2.png │ │ └── yaba3.png │ ├── yeah.qss │ └── yeah │ │ └── yeah.png │ ├── release │ └── skin │ │ ├── Bliss │ │ ├── maxButton.png │ │ ├── maxButton1.png │ │ ├── maxButton2.png │ │ ├── minButton.png │ │ ├── minButton1.png │ │ ├── minButton2.png │ │ ├── quiButton.png │ │ ├── quiButton1.png │ │ ├── quiButton2.png │ │ ├── sl.png │ │ ├── so.png │ │ ├── sr.png │ │ └── su.png │ │ ├── Glassy │ │ ├── maxButton.png │ │ ├── minButton.png │ │ ├── quiButton.png │ │ ├── sl.png │ │ ├── so.png │ │ ├── sr.png │ │ └── su.png │ │ ├── Green │ │ ├── maxButton.png │ │ ├── minButton.png │ │ ├── quiButton.png │ │ ├── sl.png │ │ ├── so.png │ │ ├── sr.png │ │ └── su.png │ │ ├── Night Vision │ │ ├── maxButton.png │ │ ├── minButton.png │ │ ├── quiButton.png │ │ ├── sl.png │ │ ├── so.png │ │ ├── sr.png │ │ └── su.png │ │ ├── Vista │ │ ├── maxButton.png │ │ ├── maxButton1.png │ │ ├── maxButton2.png │ │ ├── minButton.png │ │ ├── minButton1.png │ │ ├── minButton2.png │ │ ├── quiButton.png │ │ ├── quiButton1.png │ │ ├── quiButton2.png │ │ ├── sl.png │ │ ├── so.png │ │ ├── sr.png │ │ └── su.png │ │ ├── VistaAlpha │ │ ├── bg.png │ │ ├── maxButton.png │ │ ├── maxButton1.png │ │ ├── maxButton2.png │ │ ├── minButton.png │ │ ├── minButton1.png │ │ ├── minButton2.png │ │ ├── quiButton.png │ │ ├── quiButton1.png │ │ ├── quiButton2.png │ │ ├── sl.png │ │ ├── so.png │ │ ├── sr.png │ │ └── su.png │ │ └── skin.dat │ ├── retroshare-gui.pro │ ├── retroshare-gui │ ├── RsAutoUpdatePage.h │ ├── configpage.h │ └── mainpage.h │ ├── retroshare-process.nsi │ ├── retroshare-ultramodern.nsi │ ├── retroshare.in │ ├── retroshare.nsi │ ├── rshare.cpp │ ├── rshare.h │ ├── sounds │ ├── alert.wav │ ├── chat1.wav │ ├── chat2.wav │ ├── file.wav │ ├── ft_complete.wav │ ├── ft_incoming.wav │ ├── incomingchat.wav │ ├── notify.wav │ ├── offline.wav │ ├── online1.wav │ ├── online2.wav │ ├── receive.wav │ ├── send1.wav │ ├── send2.wav │ └── startup.wav │ ├── svn_revision.bat │ ├── translations │ ├── qt_tr.qm │ ├── qt_tr.ts │ └── translations.pro │ ├── util │ ├── DateTime.cpp │ ├── DateTime.h │ ├── EventFilter.cpp │ ├── EventFilter.h │ ├── EventReceiver.cpp │ ├── EventReceiver.h │ ├── HandleRichText.cpp │ ├── HandleRichText.h │ ├── Interface.h │ ├── MouseEventFilter.cpp │ ├── MouseEventFilter.h │ ├── NonCopyable.cpp │ ├── NonCopyable.h │ ├── ObjectPainter.cpp │ ├── ObjectPainter.h │ ├── PixmapMerging.cpp │ ├── PixmapMerging.h │ ├── QtVersion.h │ ├── RetroStyleLabel.cpp │ ├── RetroStyleLabel.h │ ├── RsAction.cpp │ ├── RsAction.h │ ├── RsFile.cpp │ ├── RsFile.h │ ├── RsGxsUpdateBroadcast.cpp │ ├── RsGxsUpdateBroadcast.h │ ├── RsNetUtil.cpp │ ├── RsNetUtil.h │ ├── RsProtectedTimer.cpp │ ├── RsProtectedTimer.h │ ├── RsUserdata.h │ ├── TokenQueue.cpp │ ├── TokenQueue.h │ ├── TokenQueueVEG.cpp │ ├── TokenQueueVEG.h │ ├── Widget.cpp │ ├── Widget.h │ ├── WidgetBackgroundImage.cpp │ ├── WidgetBackgroundImage.h │ ├── dllexport.h │ ├── framecatcher.cpp │ ├── framecatcher.h │ ├── global.h │ ├── log.cpp │ ├── log.h │ ├── misc.cpp │ ├── misc.h │ ├── printpreview.cpp │ ├── printpreview.h │ ├── rsqtutildll.h │ ├── rsutildll.h │ ├── stringutil.cpp │ ├── stringutil.h │ ├── win32.cpp │ └── win32.h │ └── version_detail.sh ├── retroshare-nogui └── src │ ├── TerminalApiClient.cpp │ ├── TerminalApiClient.h │ ├── introserver.cc │ ├── introserver.h │ ├── menu │ ├── menu.cc │ ├── menu.h │ ├── menus.cc │ ├── menus.h │ ├── menutest.h │ ├── stdiocomms.cc │ └── stdiocomms.h │ ├── mingw32make.bat │ ├── notifytxt.cc │ ├── notifytxt.h │ ├── protobuf.pri │ ├── resources │ ├── retroshare_win.rc │ ├── retroshare_win.rc.h │ └── rs.ico │ ├── retroshare-nogui.pro │ ├── retroshare.cc │ ├── rpc │ ├── proto │ │ ├── rpcprotochat.cc │ │ ├── rpcprotochat.h │ │ ├── rpcprotofiles.cc │ │ ├── rpcprotofiles.h │ │ ├── rpcprotopeers.cc │ │ ├── rpcprotopeers.h │ │ ├── rpcprotosearch.cc │ │ ├── rpcprotosearch.h │ │ ├── rpcprotostream.cc │ │ ├── rpcprotostream.h │ │ ├── rpcprotosystem.cc │ │ ├── rpcprotosystem.h │ │ ├── rpcprotoutils.cc │ │ └── rpcprotoutils.h │ ├── rpc.cc │ ├── rpc.h │ ├── rpcecho.cc │ ├── rpcecho.h │ ├── rpcserver.cc │ ├── rpcserver.h │ ├── rpcsetup.cc │ └── rpcsetup.h │ ├── rpcsystem.h │ └── ssh │ ├── rssshd.cc │ └── rssshd.h ├── rsctrl └── src │ ├── Makefile │ ├── NOTES.txt │ └── definition │ ├── chat.proto │ ├── core.proto │ ├── files.proto │ ├── gxs.proto │ ├── msgs.proto │ ├── peers.proto │ ├── search.proto │ ├── stream.proto │ └── system.proto ├── supportlibs └── pegmarkdown │ ├── GLibFacade.c │ ├── GLibFacade.h │ ├── LICENSE │ ├── Makefile.orig │ ├── MarkdownTest_1.0.3 │ ├── MarkdownTest.pl │ └── Tests │ │ ├── Amps and angle encoding.html │ │ ├── Amps and angle encoding.text │ │ ├── Auto links.html │ │ ├── Auto links.text │ │ ├── Backslash escapes.html │ │ ├── Backslash escapes.text │ │ ├── Blockquotes with code blocks.html │ │ ├── Blockquotes with code blocks.text │ │ ├── Code Blocks.html │ │ ├── Code Blocks.text │ │ ├── Code Spans.html │ │ ├── Code Spans.text │ │ ├── Hard-wrapped paragraphs with list-like lines.html │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ ├── Horizontal rules.html │ │ ├── Horizontal rules.text │ │ ├── Inline HTML (Advanced).html │ │ ├── Inline HTML (Advanced).text │ │ ├── Inline HTML (Simple).html │ │ ├── Inline HTML (Simple).text │ │ ├── Inline HTML comments.html │ │ ├── Inline HTML comments.text │ │ ├── Links, inline style.html │ │ ├── Links, inline style.text │ │ ├── Links, reference style.html │ │ ├── Links, reference style.text │ │ ├── Links, shortcut references.html │ │ ├── Links, shortcut references.text │ │ ├── Literal quotes in titles.html │ │ ├── Literal quotes in titles.text │ │ ├── Markdown Documentation - Basics.html │ │ ├── Markdown Documentation - Basics.text │ │ ├── Markdown Documentation - Syntax.html │ │ ├── Markdown Documentation - Syntax.text │ │ ├── Nested blockquotes.html │ │ ├── Nested blockquotes.text │ │ ├── Ordered and unordered lists.html │ │ ├── Ordered and unordered lists.text │ │ ├── Strong and em together.html │ │ ├── Strong and em together.text │ │ ├── Tabs.html │ │ ├── Tabs.text │ │ ├── Tidyness.html │ │ └── Tidyness.text │ ├── README.markdown │ ├── glib.h │ ├── markdown.c │ ├── markdown_lib.c │ ├── markdown_lib.h │ ├── markdown_output.c │ ├── markdown_parser.c │ ├── markdown_parser.leg │ ├── markdown_peg.h │ ├── odf.c │ ├── odf.h │ ├── parsing_functions.c │ ├── parsing_functions.h │ ├── peg-0.1.9 │ ├── Makefile │ ├── compile.c │ ├── examples │ │ ├── Makefile │ │ ├── accept.c │ │ ├── accept.peg │ │ ├── accept.ref │ │ ├── basic.leg │ │ ├── basic.ref │ │ ├── bench.bas │ │ ├── calc.leg │ │ ├── calc.ref │ │ ├── dc.c │ │ ├── dc.peg │ │ ├── dc.ref │ │ ├── dcv.c │ │ ├── dcv.peg │ │ ├── dcv.ref │ │ ├── fibonacci.bas │ │ ├── left.c │ │ ├── left.peg │ │ ├── localctx.c │ │ ├── localctx.ref │ │ ├── rule.c │ │ ├── rule.peg │ │ ├── rule.ref │ │ ├── test.bas │ │ ├── test.c │ │ ├── test.peg │ │ ├── test.ref │ │ ├── username.leg │ │ ├── wc.leg │ │ └── wc.ref │ ├── leg.c │ ├── leg.leg │ ├── peg.1 │ ├── peg.c │ ├── peg.peg │ ├── peg.peg-c │ ├── tree.c │ ├── tree.h │ └── version.h │ ├── pegmarkdown.pro │ ├── utility_functions.c │ └── utility_functions.h └── tests ├── librssimulator ├── librssimulator.pro ├── peer │ ├── FakeLinkMgr.h │ ├── FakeNetMgr.h │ ├── FakeNxsNetMgr.h │ ├── FakePeerMgr.h │ ├── FakePublisher.h │ ├── FakeServiceControl.h │ ├── PeerNode.cc │ └── PeerNode.h └── testing │ ├── IsolatedServiceTester.cc │ ├── IsolatedServiceTester.h │ ├── SetFilter.cc │ ├── SetFilter.h │ ├── SetPacket.h │ ├── SetServiceTester.cc │ └── SetServiceTester.h └── unittests ├── libretroshare ├── dbase │ ├── ficachetest.cc │ ├── fimontest.cc │ ├── fisavetest.cc │ ├── fitest2.cc │ └── searchtest.cc ├── gxs │ ├── common │ │ ├── data_support.cc │ │ └── data_support.h │ ├── data_service │ │ ├── rsdataservice_test.cc │ │ ├── rsdataservice_test.h │ │ └── rsgxsdata_test.cc │ ├── gen_exchange │ │ ├── genexchange_test.pro │ │ ├── genexchangetester.cc │ │ ├── genexchangetester.h │ │ ├── genexchangetestservice.cc │ │ ├── genexchangetestservice.h │ │ ├── gxsmsgrelatedtest.cc │ │ ├── gxsmsgrelatedtest.h │ │ ├── gxspublishgrouptest.cc │ │ ├── gxspublishgrouptest.h │ │ ├── gxspublishmsgtest.cc │ │ ├── gxspublishmsgtest.h │ │ ├── gxsteststats.cpp │ │ ├── gxsteststats.h │ │ ├── rsdummyservices.cc │ │ ├── rsdummyservices.h │ │ └── rsgenexchange_test.cc │ ├── nxs_test │ │ ├── nxsdummyservices.cc │ │ ├── nxsdummyservices.h │ │ ├── nxsgrpsync_test.cc │ │ ├── nxsgrpsync_test.h │ │ ├── nxsgrpsyncdelayed.cc │ │ ├── nxsgrpsyncdelayed.h │ │ ├── nxsgrptestscenario.cc │ │ ├── nxsgrptestscenario.h │ │ ├── nxsmsgsync_test.cc │ │ ├── nxsmsgsync_test.h │ │ ├── nxsmsgtestscenario.cc │ │ ├── nxsmsgtestscenario.h │ │ ├── nxstesthub.cc │ │ ├── nxstesthub.h │ │ ├── nxstestscenario.h │ │ └── rsgxsnetservice_test.cc │ └── security │ │ └── gxssecurity_test.cc ├── serialiser │ ├── rsbaseitem_test.cc │ ├── rsconfigitem_test.cc │ ├── rsgrouteritem_test.cc │ ├── rsgxsiditem_test.cc │ ├── rsgxsupdateitem_test.cc │ ├── rsmsgitem_test.cc │ ├── rsnxsitems_test.cc │ ├── rsphotoitem_test.cc │ ├── rsstatusitem_test.cc │ ├── rstlvutil.cc │ ├── rstlvutil.h │ ├── rsturtleitem_test.cc │ ├── support.cc │ ├── support.h │ ├── tlvbase_test.cc │ ├── tlvbase_test2.cc │ ├── tlvitems_test.cc │ ├── tlvkey_test.cc │ ├── tlvrandom_test.cc │ ├── tlvstack_test.cc │ └── tlvtypes_test.cc └── services │ ├── gxs │ ├── FakePgpAuxUtils.cc │ ├── FakePgpAuxUtils.h │ ├── GxsIsolatedServiceTester.cc │ ├── GxsIsolatedServiceTester.h │ ├── GxsPairServiceTester.cc │ ├── GxsPairServiceTester.h │ ├── GxsPeerNode.cc │ ├── GxsPeerNode.h │ ├── RsGxsNetServiceTester.cc │ ├── RsGxsNetServiceTester.h │ ├── gxscircle_mintest.cc │ ├── gxscircle_tests.cc │ ├── gxstestservice.cc │ ├── gxstestservice.h │ ├── nxsbasic_test.cc │ ├── nxspair_tests.cc │ ├── rsgxstestitems.cc │ └── rsgxstestitems.h │ └── status │ └── status_test.cc ├── run_tests.sh ├── unittests.cc └── unittests.pro /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/README.txt -------------------------------------------------------------------------------- /RetroShare.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/RetroShare.pro -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/TODO.txt -------------------------------------------------------------------------------- /libbitdht/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/README.txt -------------------------------------------------------------------------------- /libbitdht/src/bitdht/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/Makefile -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdaccount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdaccount.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdaccount.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdboot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdboot.txt -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdconnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdconnection.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdconnection.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdfilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdfilter.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdfilter.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdfriendlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdfriendlist.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdfriendlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdfriendlist.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdhash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdhash.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdhash.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdhistory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdhistory.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdhistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdhistory.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdiface.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdmanager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdmanager.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdmanager.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdmsgs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdmsgs.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdmsgs.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdnode.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdnode.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdobj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdobj.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdobj.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdpeer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdpeer.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdpeer.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdquery.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdquery.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdquery.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdquerymgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdquerymgr.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdquerymgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdquerymgr.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdstddht.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdstddht.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdstddht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdstddht.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdstore.cc -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bdstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bdstore.h -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bencode.c -------------------------------------------------------------------------------- /libbitdht/src/bitdht/bencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/bitdht/bencode.h -------------------------------------------------------------------------------- /libbitdht/src/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/Makefile -------------------------------------------------------------------------------- /libbitdht/src/example/bdboot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/bdboot.txt -------------------------------------------------------------------------------- /libbitdht/src/example/bdhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/bdhandler.cc -------------------------------------------------------------------------------- /libbitdht/src/example/bdhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/bdhandler.h -------------------------------------------------------------------------------- /libbitdht/src/example/bootstrap_fn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/bootstrap_fn.cc -------------------------------------------------------------------------------- /libbitdht/src/example/bootstrap_fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/bootstrap_fn.h -------------------------------------------------------------------------------- /libbitdht/src/example/bssdht.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/example/bssdht.cc -------------------------------------------------------------------------------- /libbitdht/src/libbitdht.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/libbitdht.pro -------------------------------------------------------------------------------- /libbitdht/src/mingw32make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/mingw32make.bat -------------------------------------------------------------------------------- /libbitdht/src/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/Makefile -------------------------------------------------------------------------------- /libbitdht/src/tests/bdbloom_makefilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdbloom_makefilter.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdbloom_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdbloom_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdboot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdboot.txt -------------------------------------------------------------------------------- /libbitdht/src/tests/bdmetric_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdmetric_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdmgr_multitest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdmgr_multitest.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdmidids_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdmidids_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdmsgs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdmsgs_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdnode_multitest1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdnode_multitest1.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdnode_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdnode_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdnode_test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdnode_test2.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdquery_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdquery_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdspace_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdspace_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdspace_test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdspace_test2.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdstore_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdstore_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bdudp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bdudp_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/bencode_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/bencode_test.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/scripts/checks.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/scripts/checks.mk -------------------------------------------------------------------------------- /libbitdht/src/tests/scripts/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/scripts/config.mk -------------------------------------------------------------------------------- /libbitdht/src/tests/scripts/regress.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/scripts/regress.mk -------------------------------------------------------------------------------- /libbitdht/src/tests/scripts/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/scripts/rules.mk -------------------------------------------------------------------------------- /libbitdht/src/tests/udpbitdht_nettest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/udpbitdht_nettest.cc -------------------------------------------------------------------------------- /libbitdht/src/tests/utest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/tests/utest.h -------------------------------------------------------------------------------- /libbitdht/src/udp/udpbitdht.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udpbitdht.cc -------------------------------------------------------------------------------- /libbitdht/src/udp/udpbitdht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udpbitdht.h -------------------------------------------------------------------------------- /libbitdht/src/udp/udplayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udplayer.cc -------------------------------------------------------------------------------- /libbitdht/src/udp/udplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udplayer.h -------------------------------------------------------------------------------- /libbitdht/src/udp/udpproxylayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udpproxylayer.h -------------------------------------------------------------------------------- /libbitdht/src/udp/udpstack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udpstack.cc -------------------------------------------------------------------------------- /libbitdht/src/udp/udpstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/udp/udpstack.h -------------------------------------------------------------------------------- /libbitdht/src/util/bdbloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdbloom.cc -------------------------------------------------------------------------------- /libbitdht/src/util/bdbloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdbloom.h -------------------------------------------------------------------------------- /libbitdht/src/util/bdfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdfile.cc -------------------------------------------------------------------------------- /libbitdht/src/util/bdfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdfile.h -------------------------------------------------------------------------------- /libbitdht/src/util/bdnet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdnet.cc -------------------------------------------------------------------------------- /libbitdht/src/util/bdnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdnet.h -------------------------------------------------------------------------------- /libbitdht/src/util/bdrandom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdrandom.cc -------------------------------------------------------------------------------- /libbitdht/src/util/bdrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdrandom.h -------------------------------------------------------------------------------- /libbitdht/src/util/bdstring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdstring.cc -------------------------------------------------------------------------------- /libbitdht/src/util/bdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdstring.h -------------------------------------------------------------------------------- /libbitdht/src/util/bdthreads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdthreads.cc -------------------------------------------------------------------------------- /libbitdht/src/util/bdthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libbitdht/src/util/bdthreads.h -------------------------------------------------------------------------------- /libresapi/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/README.md -------------------------------------------------------------------------------- /libresapi/src/api/ApiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ApiServer.cpp -------------------------------------------------------------------------------- /libresapi/src/api/ApiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ApiServer.h -------------------------------------------------------------------------------- /libresapi/src/api/ApiServerMHD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ApiServerMHD.cpp -------------------------------------------------------------------------------- /libresapi/src/api/ApiServerMHD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ApiServerMHD.h -------------------------------------------------------------------------------- /libresapi/src/api/ApiTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ApiTypes.h -------------------------------------------------------------------------------- /libresapi/src/api/ChatHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ChatHandler.cpp -------------------------------------------------------------------------------- /libresapi/src/api/ChatHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ChatHandler.h -------------------------------------------------------------------------------- /libresapi/src/api/FileSearchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/FileSearchHandler.h -------------------------------------------------------------------------------- /libresapi/src/api/GxsMetaOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/GxsMetaOperators.h -------------------------------------------------------------------------------- /libresapi/src/api/GxsResponseTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/GxsResponseTask.cpp -------------------------------------------------------------------------------- /libresapi/src/api/GxsResponseTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/GxsResponseTask.h -------------------------------------------------------------------------------- /libresapi/src/api/IdentityHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/IdentityHandler.cpp -------------------------------------------------------------------------------- /libresapi/src/api/IdentityHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/IdentityHandler.h -------------------------------------------------------------------------------- /libresapi/src/api/JsonStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/JsonStream.cpp -------------------------------------------------------------------------------- /libresapi/src/api/JsonStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/JsonStream.h -------------------------------------------------------------------------------- /libresapi/src/api/LivereloadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/LivereloadHandler.h -------------------------------------------------------------------------------- /libresapi/src/api/Operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/Operators.cpp -------------------------------------------------------------------------------- /libresapi/src/api/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/Operators.h -------------------------------------------------------------------------------- /libresapi/src/api/Pagination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/Pagination.h -------------------------------------------------------------------------------- /libresapi/src/api/PeersHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/PeersHandler.cpp -------------------------------------------------------------------------------- /libresapi/src/api/PeersHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/PeersHandler.h -------------------------------------------------------------------------------- /libresapi/src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/README.md -------------------------------------------------------------------------------- /libresapi/src/api/ResourceRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ResourceRouter.cpp -------------------------------------------------------------------------------- /libresapi/src/api/ResourceRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/ResourceRouter.h -------------------------------------------------------------------------------- /libresapi/src/api/RsControlModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/RsControlModule.cpp -------------------------------------------------------------------------------- /libresapi/src/api/RsControlModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/RsControlModule.h -------------------------------------------------------------------------------- /libresapi/src/api/StateTokenServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/StateTokenServer.cpp -------------------------------------------------------------------------------- /libresapi/src/api/StateTokenServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/StateTokenServer.h -------------------------------------------------------------------------------- /libresapi/src/api/TmpBlobStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/TmpBlobStore.cpp -------------------------------------------------------------------------------- /libresapi/src/api/TmpBlobStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/TmpBlobStore.h -------------------------------------------------------------------------------- /libresapi/src/api/TransfersHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/TransfersHandler.cpp -------------------------------------------------------------------------------- /libresapi/src/api/TransfersHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/TransfersHandler.h -------------------------------------------------------------------------------- /libresapi/src/api/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/json.cpp -------------------------------------------------------------------------------- /libresapi/src/api/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/api/json.h -------------------------------------------------------------------------------- /libresapi/src/libresapi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/libresapi.pro -------------------------------------------------------------------------------- /libresapi/src/webfiles/RsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webfiles/RsApi.js -------------------------------------------------------------------------------- /libresapi/src/webfiles/green-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webfiles/green-black.css -------------------------------------------------------------------------------- /libresapi/src/webfiles/gui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webfiles/gui.jsx -------------------------------------------------------------------------------- /libresapi/src/webfiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webfiles/index.html -------------------------------------------------------------------------------- /libresapi/src/webfiles/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webfiles/react.js -------------------------------------------------------------------------------- /libresapi/src/webui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/Makefile -------------------------------------------------------------------------------- /libresapi/src/webui/PeersTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/PeersTest.js -------------------------------------------------------------------------------- /libresapi/src/webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/README.md -------------------------------------------------------------------------------- /libresapi/src/webui/RsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/RsApi.js -------------------------------------------------------------------------------- /libresapi/src/webui/RsXHRConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/RsXHRConnection.js -------------------------------------------------------------------------------- /libresapi/src/webui/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/Types.js -------------------------------------------------------------------------------- /libresapi/src/webui/green-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/green-black.css -------------------------------------------------------------------------------- /libresapi/src/webui/gui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/gui.jsx -------------------------------------------------------------------------------- /libresapi/src/webui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/index.html -------------------------------------------------------------------------------- /libresapi/src/webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libresapi/src/webui/package.json -------------------------------------------------------------------------------- /libretroshare/src/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/BUGS -------------------------------------------------------------------------------- /libretroshare/src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/Doxyfile -------------------------------------------------------------------------------- /libretroshare/src/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/Readme.txt -------------------------------------------------------------------------------- /libretroshare/src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/TODO -------------------------------------------------------------------------------- /libretroshare/src/chat/distantchat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/chat/distantchat.cc -------------------------------------------------------------------------------- /libretroshare/src/chat/distantchat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/chat/distantchat.h -------------------------------------------------------------------------------- /libretroshare/src/chat/p3chatservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/chat/p3chatservice.h -------------------------------------------------------------------------------- /libretroshare/src/chat/rschatitems.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/chat/rschatitems.cc -------------------------------------------------------------------------------- /libretroshare/src/chat/rschatitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/chat/rschatitems.h -------------------------------------------------------------------------------- /libretroshare/src/dbase/cachetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/cachetest.h -------------------------------------------------------------------------------- /libretroshare/src/dbase/fimonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/fimonitor.cc -------------------------------------------------------------------------------- /libretroshare/src/dbase/fimonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/fimonitor.h -------------------------------------------------------------------------------- /libretroshare/src/dbase/findex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/findex.cc -------------------------------------------------------------------------------- /libretroshare/src/dbase/findex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/findex.h -------------------------------------------------------------------------------- /libretroshare/src/dbase/fistore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/fistore.cc -------------------------------------------------------------------------------- /libretroshare/src/dbase/fistore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/fistore.h -------------------------------------------------------------------------------- /libretroshare/src/dbase/rsexpr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dbase/rsexpr.cc -------------------------------------------------------------------------------- /libretroshare/src/dht/p3bitdht.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dht/p3bitdht.cc -------------------------------------------------------------------------------- /libretroshare/src/dht/p3bitdht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dht/p3bitdht.h -------------------------------------------------------------------------------- /libretroshare/src/dht/stunaddrassist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/dht/stunaddrassist.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftchunkmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftchunkmap.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftchunkmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftchunkmap.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftcontroller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftcontroller.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftcontroller.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftdata.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftdatamultiplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftdatamultiplex.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftdbase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftdbase.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftdbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftdbase.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftextralist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftextralist.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftextralist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftextralist.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftfilecreator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftfilecreator.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftfilecreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftfilecreator.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftfileprovider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftfileprovider.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftfileprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftfileprovider.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftfilesearch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftfilesearch.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftfilesearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftfilesearch.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftsearch.h -------------------------------------------------------------------------------- /libretroshare/src/ft/ftserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftserver.cc -------------------------------------------------------------------------------- /libretroshare/src/ft/ftserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/ft/ftserver.h -------------------------------------------------------------------------------- /libretroshare/src/grouter/p3grouter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/grouter/p3grouter.cc -------------------------------------------------------------------------------- /libretroshare/src/grouter/p3grouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/grouter/p3grouter.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/UseCases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/UseCases.txt -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_acadeeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_acadeeb.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_gixp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_gixp.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_gmxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_gmxp.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_gxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_gxp.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_gxp_apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_gxp_apps.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_gxp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_gxp_service.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/db_wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/db_wire.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/gxssecurity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/gxssecurity.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/gxssecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/gxssecurity.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/gxstokenqueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/gxstokenqueue.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/gxstokenqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/gxstokenqueue.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsdataservice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsdataservice.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsdataservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsdataservice.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgds.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgenexchange.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgenexchange.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgenexchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgenexchange.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgixs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgixs.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgroups.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxs.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxsdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxsdata.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxsdata.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxsnetutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxsnetutils.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxsnetutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxsnetutils.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxsutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxsutil.cc -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsgxsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsgxsutil.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsnxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsnxs.h -------------------------------------------------------------------------------- /libretroshare/src/gxs/rsnxsobserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/gxs/rsnxsobserver.h -------------------------------------------------------------------------------- /libretroshare/src/libretroshare.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/libretroshare.pro -------------------------------------------------------------------------------- /libretroshare/src/licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/licence -------------------------------------------------------------------------------- /libretroshare/src/mingw32make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/mingw32make.bat -------------------------------------------------------------------------------- /libretroshare/src/pgp/pgpauxutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/pgpauxutils.cc -------------------------------------------------------------------------------- /libretroshare/src/pgp/pgpauxutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/pgpauxutils.h -------------------------------------------------------------------------------- /libretroshare/src/pgp/pgphandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/pgphandler.cc -------------------------------------------------------------------------------- /libretroshare/src/pgp/pgphandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/pgphandler.h -------------------------------------------------------------------------------- /libretroshare/src/pgp/pgpkeyutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/pgpkeyutil.cc -------------------------------------------------------------------------------- /libretroshare/src/pgp/pgpkeyutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/pgpkeyutil.h -------------------------------------------------------------------------------- /libretroshare/src/pgp/rscertificate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/rscertificate.cc -------------------------------------------------------------------------------- /libretroshare/src/pgp/rscertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pgp/rscertificate.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/Makefile -------------------------------------------------------------------------------- /libretroshare/src/pqi/authgpg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authgpg.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/authgpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authgpg.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/authgpgtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authgpgtest.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/authgpgtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authgpgtest.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/authssl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authssl.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/authssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authssl.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/authssltest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authssltest.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/authssltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/authssltest.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3cfgmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3cfgmgr.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3cfgmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3cfgmgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3dhtmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3dhtmgr.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3dhtmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3dhtmgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3historymgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3historymgr.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3historymgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3historymgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3linkmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3linkmgr.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3linkmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3linkmgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3netmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3netmgr.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3netmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3netmgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3notify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3notify.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3notify.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3peermgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3peermgr.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3peermgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3peermgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/p3upnpmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/p3upnpmgr.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqi.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqi_base.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiarchive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiarchive.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiarchive.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiassist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiassist.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqibin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqibin.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqibin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqibin.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqihandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqihandler.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqihandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqihandler.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqihash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqihash.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiindic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiindic.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiipset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiipset.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiipset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiipset.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqilistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqilistener.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiloopback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiloopback.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiloopback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiloopback.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqimonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqimonitor.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqimonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqimonitor.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqinetstatebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqinetstatebox.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqinetwork.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqinetwork.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqinetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqinetwork.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiperson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiperson.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiperson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiperson.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqipersongrp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqipersongrp.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqipersongrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqipersongrp.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiqos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiqos.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiqos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiqos.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiqosstreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiqosstreamer.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiservice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiservice.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqiservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqiservice.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqissl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqissl.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqissl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqissl.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqissllistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqissllistener.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqisslproxy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqisslproxy.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqisslproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqisslproxy.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqissludp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqissludp.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqissludp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqissludp.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqistore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqistore.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqistore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqistore.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqistreamer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqistreamer.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/pqistreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/pqistreamer.h -------------------------------------------------------------------------------- /libretroshare/src/pqi/sslfns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/sslfns.cc -------------------------------------------------------------------------------- /libretroshare/src/pqi/sslfns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/pqi/sslfns.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/Makefile -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsdht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsdht.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsdisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsdisc.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsdsdv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsdsdv.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsexpr.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsfiles.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsflags.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsids.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsiface.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsinit.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsmsgs.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rspeers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rspeers.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsphoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsphoto.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rsrtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rsrtt.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rstypes.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rswiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rswiki.h -------------------------------------------------------------------------------- /libretroshare/src/retroshare/rswire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/retroshare/rswire.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/Makefile -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3face.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3history.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3msgs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3msgs.cc -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3msgs.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3peers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3peers.cc -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3peers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3peers.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3photo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3photo.cc -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3photo.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3rank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3rank.cc -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3rank.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3status.cc -------------------------------------------------------------------------------- /libretroshare/src/rsserver/p3status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/p3status.h -------------------------------------------------------------------------------- /libretroshare/src/rsserver/rsinit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/rsinit.cc -------------------------------------------------------------------------------- /libretroshare/src/rsserver/rstypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/rsserver/rstypes.cc -------------------------------------------------------------------------------- /libretroshare/src/scripts/checks.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/scripts/checks.mk -------------------------------------------------------------------------------- /libretroshare/src/scripts/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/scripts/config.mk -------------------------------------------------------------------------------- /libretroshare/src/scripts/regress.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/scripts/regress.mk -------------------------------------------------------------------------------- /libretroshare/src/scripts/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/scripts/rules.mk -------------------------------------------------------------------------------- /libretroshare/src/services/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/Makefile -------------------------------------------------------------------------------- /libretroshare/src/services/p3banlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3banlist.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3bwctrl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3bwctrl.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3bwctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3bwctrl.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3dsdv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3dsdv.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3dsdv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3dsdv.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3posted.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3posted.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3posted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3posted.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3rtt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3rtt.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3rtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3rtt.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3service.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3tunnel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3tunnel.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3tunnel.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3wiki.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3wiki.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3wiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3wiki.h -------------------------------------------------------------------------------- /libretroshare/src/services/p3wire.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3wire.cc -------------------------------------------------------------------------------- /libretroshare/src/services/p3wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/services/p3wire.h -------------------------------------------------------------------------------- /libretroshare/src/svn_revision.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/svn_revision.bat -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/bio_tou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/bio_tou.h -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/bss_tou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/bss_tou.c -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/tcppacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/tcppacket.h -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/tcpstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/tcpstream.h -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/tou.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/tou.cc -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/tou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/tou.h -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/udppeer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/udppeer.cc -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/udppeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/udppeer.h -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/udprelay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/udprelay.cc -------------------------------------------------------------------------------- /libretroshare/src/tcponudp/udprelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tcponudp/udprelay.h -------------------------------------------------------------------------------- /libretroshare/src/tests/TestNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/TestNotes.txt -------------------------------------------------------------------------------- /libretroshare/src/tests/dbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/dbase/Makefile -------------------------------------------------------------------------------- /libretroshare/src/tests/ft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/ft/Makefile -------------------------------------------------------------------------------- /libretroshare/src/tests/ft/pqitestor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/ft/pqitestor.h -------------------------------------------------------------------------------- /libretroshare/src/tests/network_simulator/network_simulator.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = nscore gui 3 | -------------------------------------------------------------------------------- /libretroshare/src/tests/pgp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/pgp/Makefile -------------------------------------------------------------------------------- /libretroshare/src/tests/pgp/test_pgp_handler.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./test_pgp_handler -F 4 | 5 | -------------------------------------------------------------------------------- /libretroshare/src/tests/pqi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/pqi/Makefile -------------------------------------------------------------------------------- /libretroshare/src/tests/pqi/pkt_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/pqi/pkt_test.h -------------------------------------------------------------------------------- /libretroshare/src/tests/upnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/upnp/Makefile -------------------------------------------------------------------------------- /libretroshare/src/tests/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/tests/util/Makefile -------------------------------------------------------------------------------- /libretroshare/src/turtle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/turtle/Makefile -------------------------------------------------------------------------------- /libretroshare/src/turtle/p3turtle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/turtle/p3turtle.cc -------------------------------------------------------------------------------- /libretroshare/src/turtle/p3turtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/turtle/p3turtle.h -------------------------------------------------------------------------------- /libretroshare/src/turtle/turtletypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/turtle/turtletypes.h -------------------------------------------------------------------------------- /libretroshare/src/upnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/upnp/Makefile -------------------------------------------------------------------------------- /libretroshare/src/upnp/UPnPBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/upnp/UPnPBase.cpp -------------------------------------------------------------------------------- /libretroshare/src/upnp/UPnPBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/upnp/UPnPBase.h -------------------------------------------------------------------------------- /libretroshare/src/upnp/upnptest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/upnp/upnptest.cc -------------------------------------------------------------------------------- /libretroshare/src/upnp/upnputil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/upnp/upnputil.c -------------------------------------------------------------------------------- /libretroshare/src/upnp/upnputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/upnp/upnputil.h -------------------------------------------------------------------------------- /libretroshare/src/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/Makefile -------------------------------------------------------------------------------- /libretroshare/src/util/argstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/argstream.h -------------------------------------------------------------------------------- /libretroshare/src/util/contentvalue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/contentvalue.cc -------------------------------------------------------------------------------- /libretroshare/src/util/contentvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/contentvalue.h -------------------------------------------------------------------------------- /libretroshare/src/util/dnsresolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/dnsresolver.cc -------------------------------------------------------------------------------- /libretroshare/src/util/dnsresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/dnsresolver.h -------------------------------------------------------------------------------- /libretroshare/src/util/exampletst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/exampletst.c -------------------------------------------------------------------------------- /libretroshare/src/util/extaddrfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/extaddrfinder.h -------------------------------------------------------------------------------- /libretroshare/src/util/pugiconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/pugiconfig.h -------------------------------------------------------------------------------- /libretroshare/src/util/radix64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/radix64.h -------------------------------------------------------------------------------- /libretroshare/src/util/retrodb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/retrodb.cc -------------------------------------------------------------------------------- /libretroshare/src/util/retrodb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/retrodb.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsaes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsaes.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsaes.h -------------------------------------------------------------------------------- /libretroshare/src/util/rscompress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rscompress.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rscompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rscompress.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsdbbind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdbbind.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsdbbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdbbind.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsdebug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdebug.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdebug.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsdir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdir.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdir.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsdiscspace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdiscspace.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsdiscspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsdiscspace.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsinitedptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsinitedptr.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsmemcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsmemcache.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsmemory.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsnet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsnet.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsnet.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsnet_ss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsnet_ss.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsprint.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsprint.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsrandom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsrandom.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsrandom.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsrecogn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsrecogn.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsrecogn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsrecogn.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsscopetimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsscopetimer.h -------------------------------------------------------------------------------- /libretroshare/src/util/rssharedptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rssharedptr.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsstd.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsstring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsstring.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsstring.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsthreads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsthreads.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rsthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsthreads.h -------------------------------------------------------------------------------- /libretroshare/src/util/rstickevent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rstickevent.cc -------------------------------------------------------------------------------- /libretroshare/src/util/rstickevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rstickevent.h -------------------------------------------------------------------------------- /libretroshare/src/util/rsversioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rsversioninfo.h -------------------------------------------------------------------------------- /libretroshare/src/util/rswin.cc: -------------------------------------------------------------------------------- 1 | #include "util/rswin.h" 2 | -------------------------------------------------------------------------------- /libretroshare/src/util/rswin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/rswin.h -------------------------------------------------------------------------------- /libretroshare/src/util/smallobject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/smallobject.cc -------------------------------------------------------------------------------- /libretroshare/src/util/smallobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/smallobject.h -------------------------------------------------------------------------------- /libretroshare/src/util/utest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/util/utest.h -------------------------------------------------------------------------------- /libretroshare/src/version_detail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/version_detail.sh -------------------------------------------------------------------------------- /libretroshare/src/zeroconf/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/libretroshare/src/zeroconf/NOTES.txt -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk.pro -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/accumulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/accumulate.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/accumulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/accumulate.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/armour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/armour.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/callback.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/compress.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/compress.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/configure.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/create.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/create.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/crypto.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/crypto.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/defs.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/errors.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/errors.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/final.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/final.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/hash.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/hash.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/keyring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/keyring.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/keyring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/keyring.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/lists.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/lists.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/literal.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/memory.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/memory.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/opsdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/opsdir.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/opsdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/opsdir.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/opsstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/opsstring.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/opsstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/opsstring.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/packet.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/partial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/partial.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/random.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/random.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/reader.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/reader_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/reader_fd.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/reader_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/reader_mem.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/signature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/signature.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/signature.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/std_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/std_print.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/symmetric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/symmetric.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/types.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/util.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/util.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/validate.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/validate.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/version.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/writer.c -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/writer.h -------------------------------------------------------------------------------- /openpgpsdk/src/openpgpsdk/writer_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/openpgpsdk/src/openpgpsdk/writer_fd.c -------------------------------------------------------------------------------- /plugins/Common/retroshare_plugin.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/Common/retroshare_plugin.pri -------------------------------------------------------------------------------- /plugins/FeedReader/FeedReader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/FeedReader.pro -------------------------------------------------------------------------------- /plugins/FeedReader/FeedReaderPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/FeedReaderPlugin.h -------------------------------------------------------------------------------- /plugins/FeedReader/gui/AddFeedDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/gui/AddFeedDialog.h -------------------------------------------------------------------------------- /plugins/FeedReader/gui/images/Feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/gui/images/Feed.png -------------------------------------------------------------------------------- /plugins/FeedReader/gui/images/Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/gui/images/Link.png -------------------------------------------------------------------------------- /plugins/FeedReader/gui/images/Root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/gui/images/Root.png -------------------------------------------------------------------------------- /plugins/FeedReader/qss/FeedReader_Standard.qss: -------------------------------------------------------------------------------- 1 | /* Standard stylesheet for FeedReader */ 2 | -------------------------------------------------------------------------------- /plugins/FeedReader/util/CURLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/util/CURLWrapper.h -------------------------------------------------------------------------------- /plugins/FeedReader/util/HTMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/util/HTMLWrapper.h -------------------------------------------------------------------------------- /plugins/FeedReader/util/XMLWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/util/XMLWrapper.cpp -------------------------------------------------------------------------------- /plugins/FeedReader/util/XMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/util/XMLWrapper.h -------------------------------------------------------------------------------- /plugins/FeedReader/util/XPathWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/FeedReader/util/XPathWrapper.h -------------------------------------------------------------------------------- /plugins/LinksCloud/AddLinksDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/AddLinksDialog.cpp -------------------------------------------------------------------------------- /plugins/LinksCloud/AddLinksDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/AddLinksDialog.h -------------------------------------------------------------------------------- /plugins/LinksCloud/AddLinksDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/AddLinksDialog.ui -------------------------------------------------------------------------------- /plugins/LinksCloud/LinksCloud.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/LinksCloud.pro -------------------------------------------------------------------------------- /plugins/LinksCloud/LinksCloudPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/LinksCloudPlugin.h -------------------------------------------------------------------------------- /plugins/LinksCloud/LinksDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/LinksDialog.cpp -------------------------------------------------------------------------------- /plugins/LinksCloud/LinksDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/LinksDialog.h -------------------------------------------------------------------------------- /plugins/LinksCloud/LinksDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/LinksDialog.ui -------------------------------------------------------------------------------- /plugins/LinksCloud/images/irkick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/images/irkick.png -------------------------------------------------------------------------------- /plugins/LinksCloud/p3ranking.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/p3ranking.cc -------------------------------------------------------------------------------- /plugins/LinksCloud/p3ranking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/p3ranking.h -------------------------------------------------------------------------------- /plugins/LinksCloud/rsrank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/rsrank.h -------------------------------------------------------------------------------- /plugins/LinksCloud/rsrankitems.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/rsrankitems.cc -------------------------------------------------------------------------------- /plugins/LinksCloud/rsrankitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/LinksCloud/rsrankitems.h -------------------------------------------------------------------------------- /plugins/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/PluginInterface.h -------------------------------------------------------------------------------- /plugins/VOIP/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/README.txt -------------------------------------------------------------------------------- /plugins/VOIP/VOIP.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/VOIP.pro -------------------------------------------------------------------------------- /plugins/VOIP/VOIPPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/VOIPPlugin.cpp -------------------------------------------------------------------------------- /plugins/VOIP/VOIPPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/VOIPPlugin.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioInputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioInputConfig.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioInputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioInputConfig.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioInputConfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioInputConfig.ui -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioStats.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioStats.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioStats.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioStats.ui -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioWizard.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioWizard.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/AudioWizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/AudioWizard.ui -------------------------------------------------------------------------------- /plugins/VOIP/gui/QVideoDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/QVideoDevice.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/QVideoDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/QVideoDevice.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/SpeexProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/SpeexProcessor.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/SpeexProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/SpeexProcessor.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPGUIHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPGUIHandler.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPGUIHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPGUIHandler.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPNotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPNotify.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPNotify.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPToasterItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPToasterItem.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPToasterItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPToasterItem.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPToasterItem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPToasterItem.ui -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPToasterNotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPToasterNotify.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIPToasterNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIPToasterNotify.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/VOIP_images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VOIP_images.qrc -------------------------------------------------------------------------------- /plugins/VOIP/gui/VideoProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VideoProcessor.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/VideoProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/VideoProcessor.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/audiodevicehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/audiodevicehelper.cpp -------------------------------------------------------------------------------- /plugins/VOIP/gui/audiodevicehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/audiodevicehelper.h -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/call-hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/call-hold.png -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/call-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/call-start.png -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/call-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/call-stop.png -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/camera-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/camera-off.png -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/camera-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/camera-on.png -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/muted_self.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/muted_self.svg -------------------------------------------------------------------------------- /plugins/VOIP/gui/images/talking_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/images/talking_on.svg -------------------------------------------------------------------------------- /plugins/VOIP/gui/sounds/ring3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/sounds/ring3.wav -------------------------------------------------------------------------------- /plugins/VOIP/gui/sounds/ringin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/gui/sounds/ringin.wav -------------------------------------------------------------------------------- /plugins/VOIP/interface/rsVOIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/interface/rsVOIP.h -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ca_ES.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ca_ES.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ca_ES.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_cs.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_cs.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_da.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_da.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_de.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_de.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_el.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_el.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_el.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_en.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_en.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_es.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_es.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_fi.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_fi.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_fr.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_fr.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_hu.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_hu.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_it.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_it.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ja_JP.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ja_JP.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ja_JP.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ko.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ko.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_lang.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_lang.qrc -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_nl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_nl.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_nl.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_pl.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_pl.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_pt_BR.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_pt_BR.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ru.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_ru.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_sv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_sv.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_sv.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_tr.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_tr.ts -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_zh_CN.qm -------------------------------------------------------------------------------- /plugins/VOIP/lang/VOIP_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/lang/VOIP_zh_CN.ts -------------------------------------------------------------------------------- /plugins/VOIP/p3Voip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/p3Voip.h -------------------------------------------------------------------------------- /plugins/VOIP/qss/VOIP_Standard.qss: -------------------------------------------------------------------------------- 1 | /* Standard stylesheet for FeedReader */ 2 | -------------------------------------------------------------------------------- /plugins/VOIP/qss/VOIP_qss.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/qss/VOIP_qss.default -------------------------------------------------------------------------------- /plugins/VOIP/qss/VOIP_qss.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/qss/VOIP_qss.qrc -------------------------------------------------------------------------------- /plugins/VOIP/services/p3VOIP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/services/p3VOIP.cc -------------------------------------------------------------------------------- /plugins/VOIP/services/p3VOIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/services/p3VOIP.h -------------------------------------------------------------------------------- /plugins/VOIP/services/rsVOIPItems.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/services/rsVOIPItems.cc -------------------------------------------------------------------------------- /plugins/VOIP/services/rsVOIPItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/VOIP/services/rsVOIPItems.h -------------------------------------------------------------------------------- /plugins/mingw32make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/mingw32make.bat -------------------------------------------------------------------------------- /plugins/plugins.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/plugins/plugins.pro -------------------------------------------------------------------------------- /retroshare-gui/src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/Doxyfile -------------------------------------------------------------------------------- /retroshare-gui/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/README.txt -------------------------------------------------------------------------------- /retroshare-gui/src/Todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/Todo.txt -------------------------------------------------------------------------------- /retroshare-gui/src/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/changelog.txt -------------------------------------------------------------------------------- /retroshare-gui/src/control/eventtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/control/eventtype.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/AboutDialog.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/AboutDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/AboutDialog.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/FriendsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/FriendsDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/GenCertDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/GenCertDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/HelpDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/HelpDialog.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/HelpDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/HelpDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/HelpDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/HelpDialog.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/LogoBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/LogoBar.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/LogoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/LogoBar.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/MainPage.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/MainWindow.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/MainWindow.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/MainWindow.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NetworkDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NetworkDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NetworkView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NetworkView.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NetworkView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NetworkView.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NetworkView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NetworkView.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NewsFeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NewsFeed.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NewsFeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NewsFeed.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/NewsFeed.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/NewsFeed.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/PluginManager.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/PluginsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/PluginsPage.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/PluginsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/PluginsPage.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/SearchDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/SearchDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/SearchDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/SearchDialog.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/ShareDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/ShareDialog.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/ShareDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/ShareDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/ShareDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/ShareDialog.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/ShareManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/ShareManager.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/ShareManager.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/ShareManager.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/SoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/SoundManager.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/StartDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/StartDialog.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/StartDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/StartDialog.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/StartDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/StartDialog.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/TrustView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/TrustView.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/TrustView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/TrustView.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/TrustView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/TrustView.ui -------------------------------------------------------------------------------- /retroshare-gui/src/gui/common/html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/common/html.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/common/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/common/html.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/elastic/arrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/elastic/arrow.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/elastic/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/elastic/edge.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/elastic/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/elastic/node.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/feeds/MsgItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/feeds/MsgItem.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/icons.qrc -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images.qrc -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/COPYING -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/back.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/btn1.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/btn2.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/btn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/btn3.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/btn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/btn4.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/chat.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/copy.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/down.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/find.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/help.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/loader/readme.txt: -------------------------------------------------------------------------------- 1 | More at 2 | http://ajaxload.info/ -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/null.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/pgp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/pgp.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/stop.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/up.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/images/user.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/linetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/linetypes.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/mainpagestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/mainpagestack.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/msgs/TagsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/msgs/TagsMenu.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/notifyqt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/notifyqt.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/gui/notifyqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/notifyqt.h -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/Bubble/history/variants/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/Bubble/private/variants/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/Bubble/public/variants/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/Bubble_Compact/private/variants/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/standard/history/variants/Standard.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/standard/private/variants/Standard.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/qss/chat/standard/public/variants/Standard.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/bad.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/boy.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/brb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/brb.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/bye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/bye.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/can.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/car.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/cat.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/cow.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/dog.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/doh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/doh.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/hot.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/lol.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/pig.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/qq.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/sad.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/sun.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/theme -------------------------------------------------------------------------------- /retroshare-gui/src/gui/smileys/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/smileys/tv.png -------------------------------------------------------------------------------- /retroshare-gui/src/gui/style/RSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/gui/style/RSStyle.h -------------------------------------------------------------------------------- /retroshare-gui/src/idle/idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/idle/idle.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/idle/idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/idle/idle.h -------------------------------------------------------------------------------- /retroshare-gui/src/lang/lang.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/lang/lang.qrc -------------------------------------------------------------------------------- /retroshare-gui/src/license/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/license/license.txt -------------------------------------------------------------------------------- /retroshare-gui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/main.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/mingw32make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/mingw32make.bat -------------------------------------------------------------------------------- /retroshare-gui/src/qss/blacknight.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/blacknight.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/blue.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/blue.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/blue/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/blue/blue.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/blue/blue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/blue/blue2.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/blue/tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/blue/tab1.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/groove.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/groove.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/qdarkstyle.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/qdarkstyle.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/qlive.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/qlive.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/qlive/qb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/qlive/qb.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/qlive/qb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/qlive/qb2.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/redscorpion.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/redscorpion.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/silver.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/silver.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/silvergrey.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/silvergrey.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/uus.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/uus.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/uus/uus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/uus/uus.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/uus/uus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/uus/uus2.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/wx.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/wx.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/wx/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/wx/wx.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/yaba.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/yaba.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/yaba/yaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/yaba/yaba.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/yaba/yaba2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/yaba/yaba2.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/yaba/yaba3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/yaba/yaba3.png -------------------------------------------------------------------------------- /retroshare-gui/src/qss/yeah.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/yeah.qss -------------------------------------------------------------------------------- /retroshare-gui/src/qss/yeah/yeah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/qss/yeah/yeah.png -------------------------------------------------------------------------------- /retroshare-gui/src/retroshare-gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/retroshare-gui.pro -------------------------------------------------------------------------------- /retroshare-gui/src/retroshare.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/retroshare.in -------------------------------------------------------------------------------- /retroshare-gui/src/retroshare.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/retroshare.nsi -------------------------------------------------------------------------------- /retroshare-gui/src/rshare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/rshare.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/rshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/rshare.h -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/alert.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/chat1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/chat1.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/chat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/chat2.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/file.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/file.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/notify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/notify.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/offline.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/offline.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/online1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/online1.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/online2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/online2.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/receive.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/receive.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/send1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/send1.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/send2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/send2.wav -------------------------------------------------------------------------------- /retroshare-gui/src/sounds/startup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/sounds/startup.wav -------------------------------------------------------------------------------- /retroshare-gui/src/svn_revision.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/svn_revision.bat -------------------------------------------------------------------------------- /retroshare-gui/src/util/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/DateTime.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/DateTime.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/EventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/EventFilter.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/Interface.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/NonCopyable.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/QtVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/QtVersion.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsAction.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsAction.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsFile.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsFile.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsNetUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsNetUtil.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsNetUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsNetUtil.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/RsUserdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/RsUserdata.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/TokenQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/TokenQueue.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/TokenQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/TokenQueue.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/Widget.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/Widget.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/dllexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/dllexport.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/framecatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/framecatcher.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/global.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/log.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/log.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/misc.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/misc.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/printpreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/printpreview.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/rsqtutildll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/rsqtutildll.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/rsutildll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/rsutildll.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/stringutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/stringutil.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/stringutil.h -------------------------------------------------------------------------------- /retroshare-gui/src/util/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/win32.cpp -------------------------------------------------------------------------------- /retroshare-gui/src/util/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/util/win32.h -------------------------------------------------------------------------------- /retroshare-gui/src/version_detail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-gui/src/version_detail.sh -------------------------------------------------------------------------------- /retroshare-nogui/src/introserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/introserver.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/introserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/introserver.h -------------------------------------------------------------------------------- /retroshare-nogui/src/menu/menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/menu/menu.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/menu/menu.h -------------------------------------------------------------------------------- /retroshare-nogui/src/menu/menus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/menu/menus.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/menu/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/menu/menus.h -------------------------------------------------------------------------------- /retroshare-nogui/src/menu/menutest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/menu/menutest.h -------------------------------------------------------------------------------- /retroshare-nogui/src/menu/stdiocomms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/menu/stdiocomms.h -------------------------------------------------------------------------------- /retroshare-nogui/src/mingw32make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/mingw32make.bat -------------------------------------------------------------------------------- /retroshare-nogui/src/notifytxt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/notifytxt.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/notifytxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/notifytxt.h -------------------------------------------------------------------------------- /retroshare-nogui/src/protobuf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/protobuf.pri -------------------------------------------------------------------------------- /retroshare-nogui/src/resources/rs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/resources/rs.ico -------------------------------------------------------------------------------- /retroshare-nogui/src/retroshare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/retroshare.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpc.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpc.h -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpcecho.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpcecho.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpcecho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpcecho.h -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpcserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpcserver.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpcserver.h -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpcsetup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpcsetup.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/rpc/rpcsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpc/rpcsetup.h -------------------------------------------------------------------------------- /retroshare-nogui/src/rpcsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/rpcsystem.h -------------------------------------------------------------------------------- /retroshare-nogui/src/ssh/rssshd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/ssh/rssshd.cc -------------------------------------------------------------------------------- /retroshare-nogui/src/ssh/rssshd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/retroshare-nogui/src/ssh/rssshd.h -------------------------------------------------------------------------------- /rsctrl/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/Makefile -------------------------------------------------------------------------------- /rsctrl/src/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/NOTES.txt -------------------------------------------------------------------------------- /rsctrl/src/definition/chat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/chat.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/core.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/core.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/files.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/files.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/gxs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/gxs.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/msgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/msgs.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/peers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/peers.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/search.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/search.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/stream.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/stream.proto -------------------------------------------------------------------------------- /rsctrl/src/definition/system.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/rsctrl/src/definition/system.proto -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/GLibFacade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/GLibFacade.c -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/GLibFacade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/GLibFacade.h -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/LICENSE -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/Makefile.orig -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/glib.h -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/markdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/markdown.c -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/markdown_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/markdown_lib.c -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/markdown_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/markdown_lib.h -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/markdown_peg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/markdown_peg.h -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/odf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/odf.c -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/odf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/supportlibs/pegmarkdown/odf.h -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/peg-0.1.9/examples/calc.ref: -------------------------------------------------------------------------------- 1 | 6 2 | 7 3 | 42 4 | -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/peg-0.1.9/examples/dc.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /supportlibs/pegmarkdown/peg-0.1.9/examples/dcv.ref: -------------------------------------------------------------------------------- 1 | 6 2 | 7 3 | 42 4 | -------------------------------------------------------------------------------- /tests/librssimulator/peer/FakeNetMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/tests/librssimulator/peer/FakeNetMgr.h -------------------------------------------------------------------------------- /tests/librssimulator/peer/PeerNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/tests/librssimulator/peer/PeerNode.cc -------------------------------------------------------------------------------- /tests/librssimulator/peer/PeerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/tests/librssimulator/peer/PeerNode.h -------------------------------------------------------------------------------- /tests/unittests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/tests/unittests/run_tests.sh -------------------------------------------------------------------------------- /tests/unittests/unittests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/tests/unittests/unittests.cc -------------------------------------------------------------------------------- /tests/unittests/unittests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetroShare/RetroShare_old/HEAD/tests/unittests/unittests.pro --------------------------------------------------------------------------------