SuccessChanges

Summary

  1. Add README (details)
  2. Fix pid_t mess (details)
  3. update debian/changelog (details)
  4. Add compile-time check for pid_t size (details)
  5. Rename policy files according to API docs (details)
  6. policy_add.c: modify according to API docs (details)
  7. policy_always_online.c: rename struct and vars (details)
  8. policy_always_online.c: add defines (details)
  9. policy_always_online.c: rename functions (details)
  10. policy_always_online.c: add functions (details)
  11. policy_any.c: rename struct and vars (details)
  12. policy_any.c: rename functions (details)
  13. policy_any.c: add functions (details)
  14. policy_change.c: change defines (details)
  15. policy_change.c: rename struct and vars (details)
  16. policy_change.c: rename functions (details)
  17. policy_change.c: add function (details)
  18. policy_iap_ask.c: add define (details)
  19. policy_iap_ask.c: rename struct (details)
  20. policy_iap_ask.c: rename functions (details)
  21. policy_iap_ask.c: add function (details)
  22. policy_iap_restart.c: modify according to API docs (details)
  23. policy_merge.c: modify according to API docs (details)
  24. policy_nw_disconnect.c: rename define and function (details)
  25. policy_nw_disconnect.c: add functions (details)
  26. policy_one.c: modify according to API docs (details)
  27. policy: fix string splitting and indentation (details)
  28. icd_network_api.c: +icd_network_api_find_module() (details)
  29. icd_osso_ic.c: +icd_osso_ic_connstats_link_get() (details)
  30. icd_policy_api.c: +icd_policy_api_run_async_next() (details)
  31. icd_dbus_api.c: +icd_dbus_api_find_handler() (details)
  32. icd_dbus_api.c: +icd_dbus_api_scan_sender_exists() (details)
  33. icd_dbus_api.c: +icd_dbus_api_state_get() (details)
  34. icd_dbus_api.c: +icd_dbus_api_state_scan_send() (details)
  35. icd_scan.c: +icd_scan_timeout_rescan_add() (details)
  36. icd_scan.c: +icd_scan_listener_send_cache() (details)
  37. icd_scan.c: +icd_scan_listener_add() (details)
  38. icd_scan.c: +icd_scan_status_start() (details)
  39. icd_scan.c: +icd_scan_status_stop() (details)
  40. icd_scan.c: +icd_scan_timeout_add() (details)
  41. icd_scan.c: +icd_scan_timeout_free() (details)
  42. icd_iap.c: +icd_iap_next_link_up_module() (details)
  43. icd_iap.c: +icd_iap_next_link_post_up_module() (details)
  44. icd_iap.c: +icd_iap_next_ip_up_module() (details)
  45. icd_iap.c: remove unnecessary variables (details)
  46. icd_iap.c: convert three similar functions to one (details)
  47. icd_iap.c: +icd_iap_script_pre_down() (details)
  48. support/icd_dbus.c: +icd_dbus_register_service() (details)
  49. support/icd_dbus.c: +icd_dbus_unregister_service() (details)
  50. icd_dbus_api.c: rewrite for easier reading (details)
  51. Rewrite icd_srv_provider_init() for easier reading (details)
  52. Minor fixes (details)
  53. Update debian/changelog (details)
  54. add basic doxygen support (details)
  55. export all the symbols from the binary so they to be used by the plugins (details)
  56. Do not return uninitialized pointer in case of no reply mcall (details)
  57. update debian/changelog (details)
  58. fix dbus scan result parameter (details)
  59. Do not always expire all of the cache for a network upon completion (details)
  60. return from icd_scan_cb if status is ICD_NW_SEARCH_EXPIRE and there is (details)
  61. update debian/changelog (details)
The file was modifiedREADME (diff)
The file was modifiedicd/icd_network_api.c (diff)
The file was modifiedicd/icd_pid.h (diff)
The file was modifiedicd/icd_pid.c (diff)
The file was modifiedicd/icd_exec.c (diff)
Commit 61f21469bb53b40d007e3ea99b777fa531e5a3d4 by Arthur D.
update debian/changelog
The file was modifieddebian/changelog (diff)
Commit 6b7251454029b269db742586a00c69907f8732d7 by ivo.g.dimitrov.75
Add compile-time check for pid_t size
Various functions count on sizeof(pid_t) == sizeof(int). Add
compile-time check assuring this is true.
Note: If we ever hit a platform where the above condition is false,
we'll have to fix the code to deal with that particular platform.
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedconfigure.ac (diff)
Commit 6e455d35ee56065da71304450cf69eaca1fef2d7 by Arthur D.
Rename policy files according to API docs
The file was removedpolicy/nw_disconnect.c
The file was addedpolicy/policy_one.c
The file was modifiedpolicy/Makefile.am (diff)
The file was removedpolicy/ask.c
The file was addedpolicy/policy_change.c
The file was addedpolicy/policy_always_online.c
The file was removedpolicy/change.c
The file was removedpolicy/merge.c
The file was removedpolicy/one.c
The file was removedpolicy/any.c
The file was addedpolicy/policy_iap_restart.c
The file was removedpolicy/always_online.c
The file was addedpolicy/policy_iap_ask.c
The file was addedpolicy/policy_merge.c
The file was removedpolicy/add.c
The file was addedpolicy/policy_any.c
The file was addedpolicy/policy_add.c
The file was removedpolicy/restart.c
The file was addedpolicy/policy_nw_disconnect.c
Commit 18d14bcd5631fe48947005d7ba6e7b2e515eb2aa by Arthur D.
policy_add.c: modify according to API docs
The file was modifiedpolicy/policy_add.c (diff)
Commit 02b3bade765df925e876537b70c16a2876fff5f1 by Arthur D.
policy_always_online.c: rename struct and vars
The file was modifiedpolicy/policy_always_online.c (diff)
Commit 0b0072573d806cf866cca780ec259b08fec89776 by Arthur D.
policy_always_online.c: add defines
The file was modifiedpolicy/policy_always_online.c (diff)
Commit 131bbf0cf5aecdb266a9d6808facb613db8b545f by Arthur D.
policy_always_online.c: rename functions
Minor fixes
The file was modifiedpolicy/policy_always_online.c (diff)
Commit 3c7e3192c4a434cf9487499a98fe76801b2a6d15 by Arthur D.
policy_always_online.c: add functions
The file was modifiedpolicy/policy_always_online.c (diff)
Commit 3d9942354fabe6e97282d6ac2fdeedaf5367a1ba by Arthur D.
policy_any.c: rename struct and vars
The file was modifiedpolicy/policy_any.c (diff)
Commit 07a23bd15c52fe2c6a7cdc649993d7fc6e4397c3 by Arthur D.
policy_any.c: rename functions
Minor fixes
The file was modifiedpolicy/policy_any.c (diff)
Commit 1251438319ae22390cbfa5ab99e47b436e3184fc by Arthur D.
policy_any.c: add functions
The file was modifiedpolicy/policy_any.c (diff)
Commit abe15fe96b4f84b4d2725e3d20af2c45b4c071f7 by Arthur D.
policy_change.c: change defines
The file was modifiedpolicy/policy_change.c (diff)
Commit a24532a838ff6632c581ad4965be6ba33bc82946 by Arthur D.
policy_change.c: rename struct and vars
The file was modifiedpolicy/policy_change.c (diff)
Commit 7968016f79a24cb78b8a712600844a998a6fe95f by Arthur D.
policy_change.c: rename functions
Minor fixes
The file was modifiedpolicy/policy_change.c (diff)
Commit b403ff48f0b78c7e9ae7dd7f356c4dd70be0a044 by Arthur D.
policy_change.c: add function
The file was modifiedpolicy/policy_change.c (diff)
Commit 8828344ee38fb3fd90f7bd1697e2a10b38d8f6f0 by Arthur D.
policy_iap_ask.c: add define
The file was modifiedpolicy/policy_iap_ask.c (diff)
Commit 61bdca0f028cd6e6aff638b8697667cabdf1b8bf by Arthur D.
policy_iap_ask.c: rename struct
The file was modifiedpolicy/policy_iap_ask.c (diff)
Commit 42a43c0bc4b2502e68a6579eb11b8b5244532597 by Arthur D.
policy_iap_ask.c: rename functions
Minor fixes
The file was modifiedpolicy/policy_iap_ask.c (diff)
Commit 13b656e29449fdb5354e67d863b907334c99f26e by Arthur D.
policy_iap_ask.c: add function
The file was modifiedpolicy/policy_iap_ask.c (diff)
Commit 5cc4d003932d84536d6f5119d7a25fdfd38cecd7 by Arthur D.
policy_iap_restart.c: modify according to API docs
The file was modifiedpolicy/policy_iap_restart.c (diff)
Commit 07ecc3db27c007f346440f3018041592a9a4a9bb by Arthur D.
policy_merge.c: modify according to API docs
The file was modifiedpolicy/policy_merge.c (diff)
Commit 9544514aa8bbd8b8437a7c10bbad556d744a75ae by Arthur D.
policy_nw_disconnect.c: rename define and function
The file was modifiedpolicy/policy_nw_disconnect.c (diff)
Commit 22ef42523cdf9ec63654c4c042d132e536dab207 by Arthur D.
policy_nw_disconnect.c: add functions
The file was modifiedpolicy/policy_nw_disconnect.c (diff)
Commit ee7cb4feb4dfc17d9f2938cb029b60d8cff08411 by Arthur D.
policy_one.c: modify according to API docs
The file was modifiedpolicy/policy_one.c (diff)
Commit 558047a2b17437f9ba05eb24975673fd25fa6a05 by Arthur D.
policy: fix string splitting and indentation
The file was modifiedpolicy/policy_change.c (diff)
The file was modifiedpolicy/policy_always_online.c (diff)
The file was modifiedpolicy/policy_merge.c (diff)
Commit 473b8c1724e923a7f53a12f142bab3335441251d by Arthur D.
icd_network_api.c: +icd_network_api_find_module()
The file was modifiedicd/icd_network_api.c (diff)
Commit 269d6be3da301707d5168245874e78b1b0ea4139 by Arthur D.
icd_osso_ic.c: +icd_osso_ic_connstats_link_get()
The file was modifiedicd/icd_osso_ic.c (diff)
Commit 2f519c3c2f98e1ab128f37acd7a6ee78e48a2a83 by Arthur D.
icd_policy_api.c: +icd_policy_api_run_async_next()
The file was modifiedicd/icd_policy_api.c (diff)
Commit 2bb17d8461f484706fd8351b6dd9fbdc48e6d264 by Arthur D.
icd_dbus_api.c: +icd_dbus_api_find_handler()
The file was modifiedicd/icd_dbus_api.c (diff)
Commit 57df4295f2c6fad408462aa9caa9d6f659c64927 by Arthur D.
icd_dbus_api.c: +icd_dbus_api_scan_sender_exists()
The file was modifiedicd/icd_dbus_api.c (diff)
Commit f19a6b37fc44ffcaa937dd4f3f8ae1b883acb493 by Arthur D.
icd_dbus_api.c: +icd_dbus_api_state_get()
The file was modifiedicd/icd_dbus_api.c (diff)
Commit 57d6111395020a983e155d64cbe206f7861c9b2d by Arthur D.
icd_dbus_api.c: +icd_dbus_api_state_scan_send()
The file was modifiedicd/icd_dbus_api.c (diff)
Commit 779496fd7f00cd2bceb42395543a9d488803225d by Arthur D.
icd_scan.c: +icd_scan_timeout_rescan_add()
The file was modifiedicd/icd_scan.c (diff)
Commit f99314ac5bc21bdaf518f5f224aecbcdb8b61d17 by Arthur D.
icd_scan.c: +icd_scan_listener_send_cache()
The file was modifiedicd/icd_scan.c (diff)
Commit b2309695fe27961db05f09dbd63f27a6795a60fd by Arthur D.
icd_scan.c: +icd_scan_listener_add()
The file was modifiedicd/icd_scan.c (diff)
Commit 9b6d5d6dd71c0ea3fbfd3aeb677601ad4278c1b1 by Arthur D.
icd_scan.c: +icd_scan_status_start()
The file was modifiedicd/icd_scan.c (diff)
Commit 8a792f1600ace496cecb50181d71312a008d0bff by Arthur D.
icd_scan.c: +icd_scan_status_stop()
The file was modifiedicd/icd_scan.c (diff)
Commit 0411f0d71f09a76ec7540c93cead77efd8eff1fc by Arthur D.
icd_scan.c: +icd_scan_timeout_add()
The file was modifiedicd/icd_scan.c (diff)
Commit 87485995e8541550ae051e92ab7d03a9c7f7b2f1 by Arthur D.
icd_scan.c: +icd_scan_timeout_free()
The file was modifiedicd/icd_scan.c (diff)
Commit 2264978d2b1f61c41a06b01d14b5ee72a4b8e8a9 by Arthur D.
icd_iap.c: +icd_iap_next_link_up_module()
The file was modifiedicd/icd_iap.c (diff)
Commit 5d43c3f5609cabcb4bba211d6f207dac405a8d34 by Arthur D.
icd_iap.c: +icd_iap_next_link_post_up_module()
The file was modifiedicd/icd_iap.c (diff)
Commit 1eef7a594f0229dc47c48fd68a150c42e7b2efbe by Arthur D.
icd_iap.c: +icd_iap_next_ip_up_module()
The file was modifiedicd/icd_iap.c (diff)
Commit 95f373b45095682f30c0b94c2a758c9739b7fe0a by Arthur D.
icd_iap.c: remove unnecessary variables
The file was modifiedicd/icd_iap.c (diff)
Commit 9469f53491213625429add6c7fa1c28c752695d8 by Arthur D.
icd_iap.c: convert three similar functions to one
+icd_iap_next_xxx_module()
-icd_iap_next_link_up_module()
-icd_iap_next_link_post_up_module()
-icd_iap_next_ip_up_module()
The file was modifiedicd/icd_iap.c (diff)
Commit 3746a1a03a6cf1ff80e4b839784d2bba0bef18cf by Arthur D.
icd_iap.c: +icd_iap_script_pre_down()
The file was modifiedicd/icd_iap.c (diff)
Commit 8138861e2ba0966a9f7cda85c0e9bb67371c4d72 by Arthur D.
support/icd_dbus.c: +icd_dbus_register_service()
The file was modifiedsupport/icd_dbus.c (diff)
Commit d93ab13e199a91b8b4cf4afb08b60578ee55265d by Arthur D.
support/icd_dbus.c: +icd_dbus_unregister_service()
The file was modifiedsupport/icd_dbus.c (diff)
Commit d67a05792328ceca367abb08ff7c9f6e04f751f9 by Arthur D.
icd_dbus_api.c: rewrite for easier reading
The file was modifiedicd/icd_dbus_api.c (diff)
Commit 46fa3028aed4f071dbe4660e3c8891419aa6decb by Arthur D.
Rewrite icd_srv_provider_init() for easier reading
The file was modifiedicd/icd_srv_provider.c (diff)
The file was modifiedicd/icd_osso_ic.c (diff)
The file was modifiedicd/icd_iap.c (diff)
The file was modifiedicd/icd_scan.c (diff)
Commit 89f73f4500b3d4cb991d60c097ae39bf237f5019 by Arthur D.
Update debian/changelog
The file was modifieddebian/changelog (diff)
Commit 87c7ef0c35984d0529ee3db6d45b3ea857584d9a by ivo.g.dimitrov.75
add basic doxygen support
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedconfigure.ac (diff)
The file was modifieddebian/control (diff)
The file was addedDoxyfile
The file was modifiedMakefile.am (diff)
Commit 3b5a8118af069e86cfd7c3a5e52e74ed673ea19b by ivo.g.dimitrov.75
export all the symbols from the binary so they to be used by the plugins
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedicd/Makefile.am (diff)
Commit 59f8ffd3d31108057a41b330ee623b03a47e3f25 by ivo.g.dimitrov.75
Do not return uninitialized pointer in case of no reply mcall
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedsupport/icd_dbus.c (diff)
Commit a61b211b37f8db36780fa935d9714a4fee7a0f39 by ivo.g.dimitrov.75
update debian/changelog
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifieddebian/changelog (diff)
Commit 737fbb6c51cf4e6430299707edce86e0d739051d by ivo.g.dimitrov.75
fix dbus scan result parameter
We should pass last_seen data, not the entry itself
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedicd/icd_dbus_api.c (diff)
Commit c0dd497a997aa1f6956330e5bb3d91d90ec73cd3 by ivo.g.dimitrov.75
Do not always expire all of the cache for a network upon completion
This fixes a RE bug
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedicd/icd_scan.c (diff)
Commit c06a85b6cdd5f2d34bf08b0c6eb316f86fdd3f74 by ivo.g.dimitrov.75
return from icd_scan_cb if status is ICD_NW_SEARCH_EXPIRE and there is
no matching entry in the network cache
This fixes RE bug
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifiedicd/icd_scan.c (diff)
Commit a1eaf5302f52bde950a8819b021bbdd5254251be by ivo.g.dimitrov.75
update debian/changelog
Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
The file was modifieddebian/changelog (diff)