summaryrefslogtreecommitdiff
path: root/usr.sbin/ldpd/ldpe.h
diff options
context:
space:
mode:
authorRenato Westphal <renato@cvs.openbsd.org>2016-06-11 01:46:37 +0000
committerRenato Westphal <renato@cvs.openbsd.org>2016-06-11 01:46:37 +0000
commit51e57021c509724ee333855b78344a9ddcc9135e (patch)
tree227397e3293f0316f65b55078352ffc50e76844d /usr.sbin/ldpd/ldpe.h
parentf48cd372a68e15c468bd1a2a52d30c0a0407a024 (diff)
Use uint16_t for notification type.
This doesn't fix any bug as we were already using uint16_t everywhere else.
Diffstat (limited to 'usr.sbin/ldpd/ldpe.h')
-rw-r--r--usr.sbin/ldpd/ldpe.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ldpd/ldpe.h b/usr.sbin/ldpd/ldpe.h
index 09b7ec92398..52a10a60d22 100644
--- a/usr.sbin/ldpd/ldpe.h
+++ b/usr.sbin/ldpd/ldpe.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ldpe.h,v 1.58 2016/06/09 17:26:32 renato Exp $ */
+/* $OpenBSD: ldpe.h,v 1.59 2016/06/11 01:46:36 renato Exp $ */
/*
* Copyright (c) 2013, 2016 Renato Westphal <renato@openbsd.org>
@@ -155,8 +155,8 @@ int recv_keepalive(struct nbr *, char *, uint16_t);
/* notification.c */
void send_notification_full(struct tcp_conn *, struct notify_msg *);
void send_notification(uint32_t, struct tcp_conn *, uint32_t,
- uint32_t);
-void send_notification_nbr(struct nbr *, uint32_t, uint32_t, uint32_t);
+ uint16_t);
+void send_notification_nbr(struct nbr *, uint32_t, uint32_t, uint16_t);
int recv_notification(struct nbr *, char *, uint16_t);
/* address.c */