summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ypldap/ypldap.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ypldap/ypldap.h')
-rw-r--r--usr.sbin/ypldap/ypldap.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/ypldap/ypldap.h b/usr.sbin/ypldap/ypldap.h
index b5e5fc0..f76adb1 100644
--- a/usr.sbin/ypldap/ypldap.h
+++ b/usr.sbin/ypldap/ypldap.h
@@ -42,9 +42,10 @@ enum imsg_type {
};
struct ypldap_addr {
- struct ypldap_addr *next;
- struct sockaddr_storage ss;
+ TAILQ_ENTRY(ypldap_addr) next;
+ struct sockaddr_storage ss;
};
+TAILQ_HEAD(ypldap_addr_list, ypldap_addr);
enum {
PROC_MAIN,
@@ -91,7 +92,7 @@ struct idm {
enum client_state idm_state;
u_int32_t idm_flags; /* lower 20 reserved */
u_int32_t idm_list;
- struct ypldap_addr *idm_addr;
+ struct ypldap_addr_list idm_addr;
in_port_t idm_port;
char idm_binddn[LINE_WIDTH];
char idm_bindcred[LINE_WIDTH];
OpenPOWER on IntegriCloud