diff options
author | paul <paul> | 2004-06-04 17:58:18 +0000 |
---|---|---|
committer | paul <paul> | 2004-06-04 17:58:18 +0000 |
commit | 5228ad27e2f3abe0ebb69f66607aedc048b94a13 (patch) | |
tree | a65817a03150dbfeb56a1eaceab526f31be1cc1d /bgpd/bgp_packet.h | |
parent | c2bfbcc38428b53e856617e1da8bbe9f8d2ee2fa (diff) |
2004-06-04 Paul Jakma <paul@dishone.st>
* type mismatch fixes
Diffstat (limited to 'bgpd/bgp_packet.h')
-rw-r--r-- | bgpd/bgp_packet.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bgpd/bgp_packet.h b/bgpd/bgp_packet.h index c1efc8bd..7bbcdb23 100644 --- a/bgpd/bgp_packet.h +++ b/bgpd/bgp_packet.h @@ -40,8 +40,9 @@ int bgp_write (struct thread *); void bgp_keepalive_send (struct peer *); void bgp_open_send (struct peer *); -void bgp_notify_send (struct peer *, u_char, u_char); -void bgp_notify_send_with_data (struct peer *, u_char, u_char, u_char *, size_t); +void bgp_notify_send (struct peer *, u_int8_t, u_int8_t); +void bgp_notify_send_with_data (struct peer *, u_int8_t, u_int8_t, + u_int8_t *, size_t); void bgp_route_refresh_send (struct peer *, afi_t, safi_t, u_char, u_char, int); void bgp_capability_send (struct peer *, afi_t, safi_t, int, int); void bgp_default_update_send (struct peer *, struct attr *, |