summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-05 11:50:17 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-05 15:07:32 +0100
commita1c9e61643eaec5441cf5d79d399b78874eeb703 (patch)
tree98d39a1f923fbb839bdc91addd5f2a77ed329c21 /source3/winbindd/winbindd.h
parent2428ec46d82e09b76402ed00b2d369ba2cb417d4 (diff)
downloadsamba-a1c9e61643eaec5441cf5d79d399b78874eeb703.tar.gz
samba-a1c9e61643eaec5441cf5d79d399b78874eeb703.tar.bz2
samba-a1c9e61643eaec5441cf5d79d399b78874eeb703.zip
s3:winbindd: rename fd_event => winbindd_fd_event
It's really confusing to have two versions of 'fd_event' metze
Diffstat (limited to 'source3/winbindd/winbindd.h')
-rw-r--r--source3/winbindd/winbindd.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/source3/winbindd/winbindd.h b/source3/winbindd/winbindd.h
index dbc50685a2..d8e6ec4c7f 100644
--- a/source3/winbindd/winbindd.h
+++ b/source3/winbindd/winbindd.h
@@ -39,15 +39,11 @@
#define WB_REPLACE_CHAR '_'
-/* bits for fd_event.flags */
-#define EVENT_FD_READ 1
-#define EVENT_FD_WRITE 2
-
-struct fd_event {
- struct fd_event *next, *prev;
+struct winbindd_fd_event {
+ struct winbindd_fd_event *next, *prev;
int fd;
int flags; /* see EVENT_FD_* flags */
- void (*handler)(struct fd_event *fde, int flags);
+ void (*handler)(struct winbindd_fd_event *fde, int flags);
void *data;
size_t length, done;
void (*finished)(void *private_data, bool success);
@@ -65,7 +61,7 @@ struct sid_ctr {
struct winbindd_cli_state {
struct winbindd_cli_state *prev, *next; /* Linked list pointers */
int sock; /* Open socket from client */
- struct fd_event fd_event;
+ struct winbindd_fd_event fd_event;
pid_t pid; /* pid of client */
bool finished; /* Can delete from list */
bool write_extra_data; /* Write extra_data field */
@@ -151,7 +147,7 @@ struct winbindd_child {
struct winbindd_domain *domain;
char *logfilename;
- struct fd_event event;
+ struct winbindd_fd_event event;
struct timed_event *lockout_policy_event;
struct timed_event *machine_password_change_event;
struct winbindd_async_request *requests;