Re: [systemd-devel] network signals

2024-02-06 Thread ashok athukuri
Hello Mantas, Thanks for the quick response, Here is what I get for GetLinkByName //busctl call org.freedesktop.network1 /org/freedesktop/network1 org.freedesktop.network1.Manager GetLinkByName s wlan0 //io 4 "/org/freedesktop/network1/link/_34" 1. I am subscribing to signal like below, Does tha

Re: [systemd-devel] network signals

2024-02-06 Thread Mantas Mikulėnas
/org/freedesktop/network1 is the toplevel object that represents the networkd daemon as a whole. Interface-specific signals would be sent for the object paths of the individual interfaces, so you need to either: a) call *GetLinkByName()* on the toplevel object to find the interface object, and the

[systemd-devel] network signals

2024-02-06 Thread ashok athukuri
Hello All, I'm trying to use DBUS signal "PropertiesChanged" of org.freedesktop.network1 /org/freedesktop/network1 *to detect network interface is up or down OR the speed of the interface is changed.* Is it possible? using a subscription to "PropertiesChanged" signal via the below interface or P