summaryrefslogtreecommitdiff
path: root/source3/lib/addrchange.h
AgeCommit message (Collapse)AuthorFilesLines
2011-10-25s3:lib/addrchange.h: include libreplace headers before othersStefan Metzmacher1-2/+2
Also we typically don't use an explicit "lib/replace/" prefix. metze
2011-10-25build: always include tevent with <tevent.h>Andrew Bartlett1-1/+1
This ensures we do the right thing if we are built against the system tevent. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
2011-10-25build: always include talloc with <talloc.h>Andrew Bartlett1-1/+1
This ensures we do the right thing if we are built against the system talloc. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
2011-02-01s3: Add support for AF_NETLINK addr notificationsVolker Lendecke1-0/+45
Via an AF_NETLINK socket, the Linux kernel can inform us when IP addresses are added or dropped. This will first be used in winbind, it was triggered by clustering with ctdb. When winbind is connected to a domain controller and ctdb decides to move away the IP address that winbind used locally for the connection to the DC, the next request will run into a timeout. winbind sends out its request, but the response will never arrive: The IP is gone. It will also be interesting for more reliable online/offline detection, but this is something for future winbind refactoring.