diff options
author | Chris Hall <GMCH@hestia.halldom.com> | 2010-01-10 23:38:14 +0000 |
---|---|---|
committer | Chris Hall <GMCH@hestia.halldom.com> | 2010-01-10 23:38:14 +0000 |
commit | 5ef5e27f2418316855e388ec8f6b87cdf140bd04 (patch) | |
tree | f42f39f1047a85b4f880b80ca2655b7eb665021d /lib/stream.h | |
parent | 020867eda32194967de7ab6f1c1128147a9ed0a9 (diff) | |
download | quagga-5ef5e27f2418316855e388ec8f6b87cdf140bd04.tar.bz2 quagga-5ef5e27f2418316855e388ec8f6b87cdf140bd04.tar.xz |
Further work-in-progress
modified: .gitignore
modified: bgpd/Makefile.am
modified: bgpd/bgp.h
modified: bgpd/bgp_common.h
modified: bgpd/bgp_connection.c
modified: bgpd/bgp_connection.h
modified: bgpd/bgp_fsm.c
modified: bgpd/bgp_msg_write.c
modified: bgpd/bgp_msg_write.h
modified: bgpd/bgp_notification.c
modified: bgpd/bgp_notification.h
modified: bgpd/bgp_open_state.c
modified: bgpd/bgp_open_state.h
modified: bgpd/bgp_packet.h
new file: bgpd/bgp_route_refresh.c
new file: bgpd/bgp_route_refresh.h
modified: bgpd/bgp_session.c
modified: bgpd/bgp_session.h
modified: lib/Makefile.am
new file: lib/confirm.h
modified: lib/memtypes.c
modified: lib/stream.c
modified: lib/stream.h
modified: lib/zassert.h
Diffstat (limited to 'lib/stream.h')
-rw-r--r-- | lib/stream.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stream.h b/lib/stream.h index 4c8a4fa9..957bf495 100644 --- a/lib/stream.h +++ b/lib/stream.h @@ -147,6 +147,7 @@ extern size_t stream_get_size (struct stream *); extern u_char *stream_get_data (struct stream *); extern void stream_set_getp (struct stream *, size_t); +extern void stream_set_endp (struct stream *, size_t); extern void stream_forward_getp (struct stream *, size_t); extern void stream_forward_endp (struct stream *, size_t); |