aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-07-18 10:27:22 +0200
committerGravatar Christian Hesse <mail@eworm.de>2013-07-18 10:27:22 +0200
commitdac21d696e1d2ba9c0c405d391af1fe76fbe874f (patch)
tree0d027485fae637fa527312b105dbd9893a5803e6
parent8cdaa2cf223aae9e3d0b0191818fcee9f3c7ea19 (diff)
downloadnetlink-notify-dac21d696e1d2ba9c0c405d391af1fe76fbe874f.tar.gz
netlink-notify-dac21d696e1d2ba9c0c405d391af1fe76fbe874f.tar.zst
use new notification for new addresses
-rw-r--r--netlink-notify.c32
1 files changed, 24 insertions, 8 deletions
diff --git a/netlink-notify.c b/netlink-notify.c
index 6d47bb5..61afd84 100644
--- a/netlink-notify.c
+++ b/netlink-notify.c
@@ -56,7 +56,7 @@ struct addresses_seen {
char *program;
unsigned int maxinterface = 0;
-NotifyNotification ** notification = NULL;
+NotifyNotification ** notifications = NULL;
struct addresses_seen *addresses_seen = NULL;
char ** name = NULL;
@@ -242,7 +242,7 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
struct rtattr *rth;
int rtl;
char buf[64];
- NotifyNotification *address = NULL;
+ NotifyNotification *address = NULL, *notification = NULL;
char *icon = NULL;
ifa = (struct ifaddrmsg *) NLMSG_DATA (msg);
@@ -250,26 +250,30 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
/* make sure we have alloced memory for NotifyNotification and addresses_seen struct array */
if (maxinterface < ifi->ifi_index) {
- notification = realloc(notification, (ifi->ifi_index + 1) * sizeof(size_t));
+ notifications = realloc(notifications, (ifi->ifi_index + 1) * sizeof(size_t));
addresses_seen = realloc(addresses_seen, (ifi->ifi_index + 1) * sizeof(struct addresses_seen));
name = realloc(name, (ifi->ifi_index + 1) * sizeof(size_t));
do {
maxinterface++; /* there is no interface with index 0, so this is safe */
- notification[maxinterface] =
+ notifications[maxinterface] =
#if NOTIFY_CHECK_VERSION(0, 7, 0)
notify_notification_new(TEXT_TOPIC, NULL, NULL);
#else
notify_notification_new(TEXT_TOPIC, NULL, NULL, NULL);
#endif
- notify_notification_set_category(notification[maxinterface], PROGNAME);
- notify_notification_set_urgency(notification[maxinterface], NOTIFY_URGENCY_NORMAL);
+ notify_notification_set_category(notifications[maxinterface], PROGNAME);
+ notify_notification_set_urgency(notifications[maxinterface], NOTIFY_URGENCY_NORMAL);
init_address(&addresses_seen[maxinterface]);
name[maxinterface] = NULL;
} while (maxinterface < ifi->ifi_index);
}
+ /* make notification point to the array element, will be overwritten
+ * later when needed for address notification */
+ notification = notifications[ifi->ifi_index];
+
/* get interface name and store it */
if (name[ifi->ifi_index] == NULL) {
name[ifi->ifi_index] = realloc(name[ifi->ifi_index], IFNAMSIZ * sizeof(char));
@@ -314,6 +318,18 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
return 0;
}
+ /* do we want new notification, not update the notification about link status */
+ address =
+#if NOTIFY_CHECK_VERSION(0, 7, 0)
+ notify_notification_new(TEXT_TOPIC, NULL, NULL);
+#else
+ notify_notification_new(TEXT_TOPIC, NULL, NULL, NULL);
+#endif
+ notify_notification_set_category(address, PROGNAME);
+ notify_notification_set_urgency(address, NOTIFY_URGENCY_NORMAL);
+
+ notification = address;
+
icon = ICON_NETWORK_ADDRESS;
break;
@@ -368,9 +384,9 @@ static int msg_handler (struct sockaddr_nl *nl, struct nlmsghdr *msg) {
printf("%s: %s\n", program, notifystr);
#endif
- notify_notification_update(notification[ifi->ifi_index], TEXT_TOPIC, notifystr, icon);
+ notify_notification_update(notification, TEXT_TOPIC, notifystr, icon);
- while (!notify_notification_show (address ? address : notification[ifi->ifi_index], &error)) {
+ while (!notify_notification_show (notification, &error)) {
if (errcount > 1) {
fprintf(stderr, "%s: Looks like we can not reconnect to notification daemon... Exiting.\n", program);
exit(EXIT_FAILURE);