aboutsummaryrefslogtreecommitdiff
path: root/src/qt/peertablemodel.cpp
Commit message (Collapse)AuthorAgeFilesLines
* really s/Doge/Dis/g this timeTomo Ueda2021-09-021-1/+1
|
* Add sortable sent/recv bytes to Peers debug tablechromatic2021-06-081-1/+10
| | | | See GH #2240.
* net: define NodeId as an int64_tCory Fields2017-04-141-1/+1
| | | | | | | | This should make occurances of NodeId wrapping essentially impossible for real-world usage. Github-Pull: #10176 Rebased-From: c851be4b25905977ca471c42435dc590fd2ff2f5
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-311-1/+1
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* Rename the remaining main.{h,cpp} to validation.{h,cpp}Matt Corallo2016-12-021-1/+1
|
* Move network-msg-processing code out of main to its own fileMatt Corallo2016-12-021-0/+1
|
* qt: Plug many memory leaksWladimir J. van der Laan2016-11-231-2/+7
| | | | | | | | | None of these are very serious, and are leaks in objects that are created at most one time. In most cases this means properly using the QObject parent hierarchy, except for BanTablePriv/PeerTablePriv which are not QObject, so use a std::unique_ptr instead.
* Display minimum ping in debug window.R E Broadley2016-10-151-3/+3
|
* net: Add most functions needed for vNodes to CConnmanCory Fields2016-09-081-9/+6
|
* gui: add NodeID to the peer tableCory Fields2016-09-081-1/+5
|
* Merge pull request #7205Wladimir J. van der Laan2016-01-051-1/+1
|\ | | | | | | | | | | fa71669 [devtools] Use git pretty-format for year parsing (MarcoFalke) fa24439 Bump copyright headers to 2015 (MarcoFalke) fa6ad85 [devtools] Rewrite fix-copyright-headers.py (MarcoFalke)
| * Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
| |
* | Double semicolon cleanup.21E142015-12-301-1/+1
|/
* [trivial] Fix typo in peertablemodel.cppMarcoFalke2015-12-021-1/+1
|
* [Qt] minor optimisations in peertablemodelPhilip Kaufmann2015-08-101-13/+6
| | | | | | | | - remove an unneeded include of net.h in peertablemodel.cpp - add const after size() in PeerTablePriv - remove 2x unneeded else in functions - replace a (int) typecast by (QVariant) to use Qt style - remove unneeded include of peertablemodel.h from rpcconsole.cpp
* qt: define QT_NO_KEYWORDSWladimir J. van der Laan2015-07-151-4/+4
| | | | | | | | QT_NO_KEYWORDS prevents Qt from defining the `foreach`, `signals`, `slots` and `emit` macros. Avoid overlap between Qt macros and boost - for example #undef hackiness in #6421.
* [Qt] replace Boost foreach with Qt version peertablemodel.cppPhilip Kaufmann2015-06-111-2/+2
|
* [Qt] extend rpc console peers tabPhilip Kaufmann2015-06-111-0/+1
| | | | | - add node id, ping wait, whitelisted and common height - rephrase some labels to make them easier to understand for users
* GUI: Clarify terminology; use "Label" heading for labels row, and ↵Luke Dashjr2015-02-261-1/+1
| | | | "Node/Service" rather than [IP] "Address"
* Added "Core" to copyright headerssandakersmann2014-12-191-1/+1
| | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
* Remove references to X11 licenceMichael Ford2014-12-161-1/+1
|
* [Qt] Add TRY_LOCK back to peertablemodelCozz Lovan2014-08-101-2/+8
|
* [Qt] format ping times in peers tab as msPhilip Kaufmann2014-08-041-2/+5
| | | | - also align ping times to the right
* [Qt] tweak new peers tab in console windowPhilip Kaufmann2014-08-041-34/+30
| | | | | | | | | | | | | | | | | | | - remove starting height as table header and replace with ping time - remove columnResizingFixer - add local address (if available) in detailed node view (on top of the right view below the remote address) - remove some .c_str() by using QString::fromStdString() - rename Address to Address/Hostname - rename secs to just s for ping time - use MODEL_UPDATE_DELAY from guiconstants.h for the peer refresh time - make PeerTableModel::columnCount() return no hard-coded value - remove and cleanup dup private: section in RPCConsole header - add new defaults for column sizes - remove behaviour which keeps disconnected peers selected and also remove code which keeps track of last selected peer stats - add sync height to detail view - add some additional NULL pointer checks for clientModel in rpcconsole.cpp
* Merge pull request #4297Wladimir J. van der Laan2014-06-061-2/+2
|\ | | | | | | b917555 qt: PeerTableModel: Fix potential deadlock. #4296 (Ashley Holman)
| * qt: PeerTableModel: Fix potential deadlock. #4296Ashley Holman2014-06-061-2/+2
| |
* | [Qt] style police and small addition in rpcconsolePhilip Kaufmann2014-06-031-2/+0
|/ | | | - fix spaces, indentation and coding style glitches
* Qt: Add GUI view of peer information. #4133Ashley Holman2014-06-031-0/+238