/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with the program; if not, see * * * Authors: * Shreyas Srinivasan * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include #include static libnm_glib_ctx *nm_ctx = NULL; static guint id = 0; static void e_shell_glib_network_monitor (libnm_glib_ctx *ctx, gpointer user_data) { libnm_glib_state state; EShellLineStatus line_status; EShellWindow *window = E_SHELL_WINDOW (user_data); EShell *shell = e_shell_window_peek_shell (window); GNOME_Evolution_ShellState shell_state; g_return_if_fail (ctx != NULL); state = libnm_glib_get_network_state (ctx); line_status = e_shell_get_line_status (shell); if (line_status == E_SHELL_LINE_STATUS_ONLINE && state == LIBNM_NO_NETWORK_CONNECTION) { shell_state = GNOME_Evolution_FORCED_OFFLINE; e_shell_go_offline (shell, window, shell_state); } else if (line_status == E_SHELL_LINE_STATUS_FORCED_OFFLINE && state == LIBNM_ACTIVE_NETWORK_CONNECTION) { shell_state = GNOME_Evolution_USER_ONLINE; e_shell_go_online (shell, window, shell_state); } } gboolean e_shell_nm_glib_initialise (EShellWindow *window); void e_shell_nm_glib_dispose (EShellWindow *window); gboolean e_shell_nm_glib_initialise (EShellWindow *window) { if (!nm_ctx) { nm_ctx = libnm_glib_init (); if (!nm_ctx) { fprintf (stderr, "Could not initialize libnm.\n"); return FALSE; } } id = libnm_glib_register_callback (nm_ctx, e_shell_glib_network_monitor, window, NULL); return TRUE; } void e_shell_nm_glib_dispose (EShellWindow *window) { if (id != 0 && nm_ctx != NULL) { libnm_glib_unregister_callback (nm_ctx, id); libnm_glib_shutdown (nm_ctx); nm_ctx = NULL; id = 0; } } tion value='dependabot/npm_and_yarn/dashboard/assets/loader-utils-1.4.2'>dependabot/npm_and_yarn/dashboard/assets/loader-utils-1.4.2 Tangerine full node (https://github.com/tangerine-network/go-tangerine)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* p2p: correct a leftover trusted -> staticPéter Szilágyi2015-05-011-4/+4
* eth, p2p: rename trusted nodes to static, drop inbound extra slotsPéter Szilágyi2015-05-015-57/+59
* cmd, eth, p2p: fix review issues enumerated by FelixPéter Szilágyi2015-04-308-34/+25
* p2p: add trust check to handshake, test privileged connectivityPéter Szilágyi2015-04-304-15/+88
* p2p: reduce the severity of a debug logPéter Szilágyi2015-04-301-1/+1
* cmd/geth, cmd/utils, eth: internalize trusted node config filePéter Szilágyi2015-04-303-30/+20
* cmd/geth, cmd/mist, cmd/utils, eth, p2p: support trusted peersPéter Szilágyi2015-04-308-27/+146
* Merge pull request #830 from obscuren/downloader-missing-parentJeffrey Wilcke2015-04-3015-33/+117
|\
| * cmd/geth: bump version to 0.9.14obscuren2015-04-301-1/+1
| * core: remove txs from queue in addition to removal of pendingobscuren2015-04-302-1/+49
| * core: added some additional chain tests for shortest chainobscuren2015-04-302-5/+30
| * eth: rely on p2p to determine block propagationobscuren2015-04-301-1/+1
| * p2p: added received at to peer messageobscuren2015-04-302-3/+5
| * core/types, eth: meassure and display propagation timesobscuren2015-04-302-1/+5
| * eth/downloader: drop blockobscuren2015-04-301-1/+1
| * core: fixed tetst to reflect (int, error) return by insertChainobscuren2015-04-292-4/+4
| * eth/downloader: ignore orphan blocks in the downloader.obscuren2015-04-291-5/+9
| * core: return the index of the block that failed when inserting a chainobscuren2015-04-297-14/+15
|/
* Merge pull request #825 from obscuren/developJeffrey Wilcke2015-04-296-35/+117
|\
| * eth/downloader: reset the chain when parent is missing during processingobscuren2015-04-291-0/+2
| * cmd/geth: bump version numberobscuren2015-04-291-1/+1
| * core: fixed chain reorg during splitsobscuren2015-04-292-27/+83
| * core/types: added fake parent hash / hash to String() outputobscuren2015-04-291-1/+11
| * eth: check if downloader is busy before showing log messageobscuren2015-04-292-0/+9
| * core: seperated proccing mutex and getting mutexobscuren2015-04-292-42/+48
| * core: bump database versionobscuren2015-04-291-1/+1
| * core: moved mutex locks in insert blocks to start of functionobscuren2015-04-291-41/+40
| * core: set min gas price at startupobscuren2015-04-291-10/+10
* | Merge pull request #822 from fjl/makefile-improvementsJeffrey Wilcke2015-04-2910-98/+121
|\ \ | |/ |/|
| * Use Makefile for Travis testsFelix Lange2015-04-295-36/+37
| * Makefile: add test targetFelix Lange2015-04-291-4/+7
| * cmd/mist: always enable whisperFelix Lange2015-04-291-0/+1
| * cmd/geth, cmd/mist: use gitCommit in node nameFelix Lange2015-04-292-15/+36
| * Makefile: set main.gitCommit when buildingFelix Lange2015-04-292-2/+15
| * cmd/mist: add blockchain version flagFelix Lange2015-04-291-0/+1
| * README: simplify build instructionsFelix Lange2015-04-291-40/+19
| * Makefile: clean should also delete Godeps/_workspace/pkgFelix Lange2015-04-291-1/+1
| * build: run build commands from the fake workspace rootFelix Lange2015-04-291-1/+5
* | Merge pull request #828 from tgerring/pathfixesJeffrey Wilcke2015-04-291-6/+7
|\ \ | |/ |/|
| * Remove path separator literalsTaylor Gerring2015-04-291-6/+7
|/
* Merge pull request #821 from karalabe/nodedb-fixJeffrey Wilcke2015-04-281-4/+6
|\
| * p2p/discover: fix api issues caused by leveldb updatePéter Szilágyi2015-04-281-4/+6
* | Merge pull request #820 from fjl/rlp-readkind-overflowJeffrey Wilcke2015-04-282-14/+40
|\ \ | |/ |/|
| * rlp: fix list bounds check overflow (found by go-fuzz)Felix Lange2015-04-282-14/+40
* | Merge pull request #793 from karalabe/discovery-node-cacheJeffrey Wilcke2015-04-2810-47/+691
|\ \
| * | p2p/discover: fix goroutine leak due to blocking on sync.OncePéter Szilágyi2015-04-282-13/+24
| * | p2p/discover: add node expirer and related testsPéter Szilágyi2015-04-273-4/+116
| * | p2p/discover: parametrize nodedb version, add persistency testsPéter Szilágyi2015-04-273-11/+62
| * | p2p/discover: drop a superfluous warningPéter Szilágyi2015-04-271-1/+1
| * | p2p/discover: wrap the pinger to update the node db tooPéter Szilágyi2015-04-271-4/+15
| * | p2p/discover: use iterator based seeding, drop old protocol testPéter Szilágyi2015-04-272-45/+118
| * | p2p/discover: write the basic tests, catch RLP bugPéter Szilágyi2015-04-273-8/+150
| * | p2p/discovery: fix issues raised in the nodeDb PRPéter Szilágyi2015-04-272-36/+32
| * | cmd/bootnode, eth, p2p, p2p/discover: use a fancier db designPéter Szilágyi2015-04-249-169/+280
| * | cmd/bootnode, eth, p2p, p2p/discover: clean up the seeder and mesh into eth.Péter Szilágyi2015-04-249-144/+168
| * | p2p/discovery: fix broken tests due to API updatePéter Szilágyi2015-04-242-4/+4
| * | p2p/discovery: use the seed table for finding nodes, auto drop stale onesPéter Szilágyi2015-04-242-5/+38
| * | cmd, eth, p2p, p2p/discover: init and clean up the seed cachePéter Szilágyi2015-04-246-9/+29
| * | p2p/discover: store nodes in leveldbFelix Lange2015-04-242-13/+73
| |/
* | Merge pull request #819 from karalabe/leveldb-updateJeffrey Wilcke2015-04-28155-10106/+7571
|\ \
| * | godeps: update leveldb and snappy, dump serpent-goPéter Szilágyi2015-04-28155-10106/+7571
* | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-04-2820-216/+1024
|\ \ \
| * \ \ Merge pull request #738 from karalabe/whisper-cleanupJeffrey Wilcke2015-04-2820-216/+1024
| |\ \ \ | | |/ / | |/| |
| | * | rpc, xeth: finish cleaning up xethPéter Szilágyi2015-04-282-17/+36
| | * | whisper: add full filter test suitePéter Szilágyi2015-04-282-2/+51
| | * | whisper: fix a small data race duirng peer connectionPéter Szilágyi2015-04-282-14/+12
| | * | xeth: fix un-decoded whisper RPC topic string bugPéter Szilágyi2015-04-281-2/+16
| | * | rpc: use nil topic wildcards instead of ""Péter Szilágyi2015-04-281-1/+1
| | * | ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcardsPéter Szilágyi2015-04-287-45/+215
| | * | rpc, ui/qt/qwhisper, whisper, xeth: introduce complex topic filtersPéter Szilágyi2015-04-2811-59/+373
| | * | whisper: fix spurious From identity with untargeted messagesPéter Szilágyi2015-04-281-1/+3
| | * | whisper: fix payload loss in case of plaintext decryptPéter Szilágyi2015-04-282-4/+109
| | * | whisper, xeth/whisper: surface TTL and hash to the APIPéter Szilágyi2015-04-285-6/+25
| | * | eth: pull in a lost merge changePéter Szilágyi2015-04-281-2/+4
| | * | rpc, whisper, xeth: fix RPC message retrieval data racePéter Szilágyi2015-04-286-13/+119
| | * | whisper: fix send timestamp omission during envelope openingPéter Szilágyi2015-04-281-0/+1
| | * | rpc, whisper, xeth: polish whisper RPC interfacePéter Szilágyi2015-04-286-120/+129
| |/ /
* | | Merge branch 'kobigurk-develop' into developobscuren2015-04-282-0/+6
|\ \ \ | |/ / |/| |
| * | eth, rpc, xeth: ext_hanhrate => eth_hashrateobscuren2015-04-283-3/+2
| * | Merge branch 'develop' of https://github.com/kobigurk/go-ethereum into kobigu...obscuren2015-04-283-0/+7
|/| |
| * | move eth_hashrate to extKobi Gurkan2015-04-211-2/+2
| * | uses newHexNum for eth_hashrateKobi Gurkan2015-04-211-1/+1
| * | adds eth_hashrate RPC methodKobi Gurkan2015-04-213-0/+7
* | | Merge pull request #817 from tgerring/rpcglogJeffrey Wilcke2015-04-283-7/+6
|\ \ \
| * | | Return Gas Price not GasTaylor Gerring2015-04-281-2/+2
| * | | Add link to Windows 64-bit geth dev buildTaylor Gerring2015-04-271-1/+1
| * | | Remove old logger from RPC pkgTaylor Gerring2015-04-272-4/+3
* | | | Merge pull request #818 from Gustav-Simonsson/add_privkey_loading_to_block_testsJeffrey Wilcke2015-04-2824-356/+2779
|\ \ \ \ | |/ / / |/| | |
| * | | Add loading of block test privkey if presentGustav Simonsson2015-04-284-9/+35
| * | | Update JSON testsGustav Simonsson2015-04-2820-347/+2744
|/ / /
* | | Merge pull request #813 from obscuren/general_fixesJeffrey Wilcke2015-04-268-24/+22
|\ \ \
| * | | geth/main: removed crazy welcome message :-(obscuren2015-04-261-1/+2
| * | | web3: updatedobscuren2015-04-262-2/+2
| * | | core, miner: added value check on tx validationobscuren2015-04-265-21/+18
|/ / /
* | | Merge pull request #805 from obscuren/download_improvementsJeffrey Wilcke2015-04-2517-232/+198
|\ \ \
| * | | cmd/geth: bump version number 0.9.12obscuren2015-04-251-1/+1
| * | | eth/downloader: removed update loop and synch channelobscuren2015-04-251-25/+0
| * | | xeth, core, cmd/utils: Transaction can not be over block gas limitobscuren2015-04-248-18/+37
| * | | natspec: disabled natspec testobscuren2015-04-241-0/+1
| * | | eth: added a few informative messages regarding downloadingobscuren2015-04-241-0/+6
| * | | eth/downloader: fixed testsobscuren2015-04-241-12/+8
| * | | eth, eth/downloader: simplified synchronisation processobscuren2015-04-242-31/+24
| * | | eth/downloader: removed peer td management and best peer selectionobscuren2015-04-242-16/+2
| * | | eth, eth/downloader: don't require td on downloader. Fixed testsobscuren2015-04-244-25/+22
| * | | eth, eth/downloader: moved peer selection to protocol handlerobscuren2015-04-244-134/+127
* | | | Merge pull request #796 from Gustav-Simonsson/fix_ignoring_of_unexpected_file...Jeffrey Wilcke2015-04-251-3/+2
|\ \ \ \
| * | | | Remove unneeded allocationGustav Simonsson2015-04-251-1/+0
| * | | | Use make instead of new for allocationGustav Simonsson2015-04-241-1/+1
| * | | | Fix ignore of unexpected files in key dirGustav Simonsson2015-04-231-3/+3
* | | | | Merge pull request #803 from obscuren/log_filter_fixesJeffrey Wilcke2015-04-241-5/+14
|\ \ \ \ \
| * | | | | core: fixed wildcard topic filters. Closes #725obscuren2015-04-241-5/+14
* | | | | | Merge pull request #773 from ethersphere/frontier/cliJeffrey Wilcke2015-04-246-55/+66
|\ \ \ \ \ \
| * | | | | | cli: correct bootnodes flag usage help linezelig2015-04-241-1/+1
| * | | | | | cli/js console: if corsDomain is not given to startRpc, we fall back to value...zelig2015-04-244-11/+14
| * | | | | | cli: fatal error if no etherbase for miningzelig2015-04-241-1/+3
| * | | | | | backend: start miner in its go routine (no wait to generate DAG)zelig2015-04-241-2/+1
| * | | | | | cli: fatal error if rpc could not be startedzelig2015-04-242-3/+5
| * | | | | | cli: clean up flag descriptions, usage docs, account list uses primary and in...zelig2015-04-243-29/+25
| * | | | | | js console: add cors domain optional argument to startRpczelig2015-04-242-8/+17
| * | | | | | cmd/admin: rename debug.block to debug.processBlock; move backtrace under debugzelig2015-04-241-2/+2
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #804 from alexvandesande/avsa-gethJeffrey Wilcke2015-04-241-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Merge branch 'avsa-geth' of https://github.com/alexvandesande/go-ethereum int...Alexandre Van de Sande2015-04-240-0/+0
| |\ \ \ \ \
| | * | | | | Smaller frontier cover artAlexandre Van de Sande2015-04-241-1/+1
| | | |_|_|/ | | |/| | |
| * / | | | Smaller frontier cover artAlexandre Van de Sande2015-04-241-1/+1
|/ / / / /
* | / / / Update README.mdJeffrey Wilcke2015-04-241-0/+1
| |/ / / |/| | |
* | | | Merge pull request #800 from obscuren/ethereum_js_updateJeffrey Wilcke2015-04-247-12/+7
|\ \ \ \ | |/ / / |/| | |
| * | | web3: updatedobscuren2015-04-243-4/+1
| * | | cmd/geth, jsre: updated ethereum.js => web3.jsobscuren2015-04-243-3/+5
| * | | eth: cleanupobscuren2015-04-241-5/+1
|/ / /
* | | Merge pull request #797 from tgerring/bootnodesJeffrey Wilcke2015-04-242-7/+4
|\ \ \
| * | | Updated bootnodesTaylor Gerring2015-04-241-2/+3
| * | | Cleanup README developer infoTaylor Gerring2015-04-241-5/+1
| |/ /
* | | Merge pull request #778 from bas-vk/issue764Jeffrey Wilcke2015-04-245-48/+62
|\ \ \
| * \ \ Merge branch 'issue764' of https://github.com/bas-vk/go-ethereum into issue764Bas van Kervel2015-04-240-0/+0
| |\ \ \
| | * | | bugfix, wrong hash stored in blockDbBas van Kervel2015-04-231-1/+1
| | * | | change order of block insert and update LastBlockBas van Kervel2015-04-221-4/+4
| | * | | Moved leveldb update loop to eth/backendBas van Kervel2015-04-224-42/+56
| | | |/ | | |/|
| * | | Moved leveldb update loop to eth/backendBas van Kervel2015-04-235-48/+62
| | |/ | |/|
* | | Merge pull request #794 from Gustav-Simonsson/block_tests_more_validationsJeffrey Wilcke2015-04-241-0/+82
|\ \ \ | |/ / |/| |
| * | Add block header validations for block testsGustav Simonsson2015-04-231-0/+82
|/ /
* | Merge pull request #792 from veox/doc-crypto-secp256k1Jeffrey Wilcke2015-04-231-1/+4
|\ \
| * | doc: crypto/secp256k1 GMP dependency package name.Noel Maersk2015-04-231-1/+4
|/ /
* | Merge pull request #769 from obscuren/developJeffrey Wilcke2015-04-2312-66/+261
|\ \
| * | core: pending txs now re-validated once every secondobscuren2015-04-231-3/+27
| * | miner: show error message for gas limit per accountobscuren2015-04-231-2/+2
| * | natspec: fixed test to work with new queued transactionsobscuren2015-04-231-1/+1
| * | core: added accessor for queued transactionsobscuren2015-04-231-0/+12
| * | eth: moved mined, tx events to protocol-hnd and improved tx propagationobscuren2015-04-234-30/+82
| * | core: fixed testobscuren2015-04-231-1/+3
| * | core: set the state for the managed tx stateobscuren2015-04-231-1/+1
| * | core: improved error message for invalid nonce txsobscuren2015-04-231-1/+1
| * | core: only post event once per tx & fixed testobscuren2015-04-232-15/+21
| * | xeth, miner: updated some loggingobscuren2015-04-232-3/+4
| * | eth: start tx pool in a goroutineobscuren2015-04-231-1/+1
| * | core: implemented a queued approach processing transactionsobscuren2015-04-233-25/+123
|/ /
* | Merge pull request #779 from Gustav-Simonsson/block_tests_reloadedJeffrey Wilcke2015-04-2333-6328/+5653
|\ \
| * | Include ZeroByteAtTheEnd and RandomByteAtTheEnd testsGustav Simonsson2015-04-231-8/+1
| * | Validate block header UncleHash against calculated hashGustav Simonsson2015-04-232-2/+13
| * | Unskip BlockTests/bcInvalidHeaderTest.json wrongUncleHashGustav Simonsson2015-04-231-4/+1
| * | Finally, glorious HEXGustav Simonsson2015-04-231-4/+4
| * | Add StateTests/stMemoryStressTest.json but skip for nowGustav Simonsson2015-04-231-0/+6
| * | Exclude TransactionWithSvalue0 as it expects invalid s value to be validGustav Simonsson2015-04-231-0/+1
| * | Update github.com/ethereum/tests filesGustav Simonsson2015-04-2326-6304/+5619
| * | Explicitly skip TransactionTests/tt10mbDataField.jsonGustav Simonsson2015-04-23