diff options
| author | Philip Kaufmann <[email protected]> | 2012-07-06 13:45:38 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-07-17 09:37:12 +0200 |
| commit | 41c938eede3e9ea29ef86f3c25bab8fa6a51a509 (patch) | |
| tree | a32400a0101478c5f761409f8370007ae0e69660 /src/qt/guiconstants.h | |
| parent | Merge pull request #1591 from Diapolo/lang_sel_Qt4.8 (diff) | |
| download | discoin-41c938eede3e9ea29ef86f3c25bab8fa6a51a509.tar.xz discoin-41c938eede3e9ea29ef86f3c25bab8fa6a51a509.zip | |
IPC-server hardening and update
- add IMPLEMENT_RANDOMIZE_STACK for ipcThread()
- log / print boost interprocess exceptions
- use MAX_URI_LENGTH in guiconstants.h (also used in qrcodedialog.cpp)
- remove unneeded includes and ipcShutdown() from qtipcserver.cpp
- fix a small mem-leak by deleting mq before re-using it
- make ipcThread() and ipcThread2() static functions
- add some more comments
Diffstat (limited to 'src/qt/guiconstants.h')
| -rw-r--r-- | src/qt/guiconstants.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h index 6f6fa7f26..405ba396b 100644 --- a/src/qt/guiconstants.h +++ b/src/qt/guiconstants.h @@ -4,10 +4,10 @@ /* Milliseconds between model updates */ static const int MODEL_UPDATE_DELAY = 500; -/* Maximum passphrase length */ +/* AskPassphraseDialog -- Maximum passphrase length */ static const int MAX_PASSPHRASE_SIZE = 1024; -/* Size of icons in status bar */ +/* BitcoinGUI -- Size of icons in status bar */ static const int STATUSBAR_ICONSIZE = 16; /* Invalid field background style */ |