summaryrefslogtreecommitdiff
path: root/ospfd
diff options
context:
space:
mode:
authorpaul <paul>2005-02-19 01:19:20 +0000
committerpaul <paul>2005-02-19 01:19:20 +0000
commitfa81b713e785d4884d5f45f3acd21dc460110862 (patch)
tree35b57c41b359f6d0db1c7491b1928a963ccb6730 /ospfd
parent109ac96f0296fd66d5a1d37def44db3cef7ca0fb (diff)
2005-02-19 Paul Jakma <paul.jakma@sun.com>
* ospf_packet.c: (ospf_stream_copy) remove (ospf_packet_dup) use stream_copy instead of ospf_stream_copy
Diffstat (limited to 'ospfd')
-rw-r--r--ospfd/ChangeLog5
-rw-r--r--ospfd/ospf_packet.c13
2 files changed, 6 insertions, 12 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog
index 9737854a..97684781 100644
--- a/ospfd/ChangeLog
+++ b/ospfd/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-19 Paul Jakma <paul.jakma@sun.com>
+
+ * ospf_packet.c: (ospf_stream_copy) remove
+ (ospf_packet_dup) use stream_copy instead of ospf_stream_copy
+
2005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* ospf_packet.c: (ospf_recv_packet) If there is somehow a runt
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c
index 038fd657..6b7a796d 100644
--- a/ospfd/ospf_packet.c
+++ b/ospfd/ospf_packet.c
@@ -214,17 +214,6 @@ ospf_packet_delete (struct ospf_interface *oi)
ospf_packet_free (op);
}
-struct stream *
-ospf_stream_copy (struct stream *new, struct stream *s)
-{
- new->endp = s->endp;
- new->getp = s->getp;
-
- memcpy (new->data, s->data, stream_get_endp (s));
-
- return new;
-}
-
struct ospf_packet *
ospf_packet_dup (struct ospf_packet *op)
{
@@ -236,7 +225,7 @@ ospf_packet_dup (struct ospf_packet *op)
/* Reserve space for MD5 authentication that may be added later. */
new = ospf_packet_new (stream_get_endp(op->s) + OSPF_AUTH_MD5_SIZE);
- ospf_stream_copy (new->s, op->s);
+ stream_copy (new->s, op->s);
new->dst = op->dst;
new->length = op->length;