chiark / gitweb /
sd-rtnl: improve detection of broadcast messages
[elogind.git] / src / bus-proxyd / proxy.h
index 21c34f1d386492aeeebf6a67497abd1b64bad2ae..ff278a24652b5e0723aa723f68a08ddc223621e3 100644 (file)
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
-#include <stdlib.h>
 #include "sd-bus.h"
 #include "bus-xml-policy.h"
-#include "util.h"
 
 typedef struct Proxy Proxy;
 
@@ -34,12 +32,13 @@ struct Proxy {
         int local_in;
         int local_out;
 
-        sd_bus *dest_bus;
+        sd_bus *destination_bus;
 
         Set *owned_names;
         SharedPolicy *policy;
 
         bool got_hello : 1;
+        bool queue_overflow : 1;
 };
 
 int proxy_new(Proxy **out, int in_fd, int out_fd, const char *dest);