aboutsummaryrefslogtreecommitdiff
path: root/lib/packets.c
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-03-01 13:27:23 -0800
committerEthan Jackson <ethan@nicira.com>2011-03-17 12:49:34 -0700
commit07a6cf771dc049600033453d700ea93b9449bd33 (patch)
tree43f17cc3e773532e2fedd341b3694c84425c54dd /lib/packets.c
parente5ed989d03ae908434d6cd6e0feab000e81e8e72 (diff)
packets: create new compose_lacp_pdu() function.
Creates new compose_lacp_pdu() from the old compose_lacp_packet() function. This will allow a LACP PDU to be created without necessarily knowing the Ethernet Source Address required for generating the packet. Future patches rely on this functionality.
Diffstat (limited to 'lib/packets.c')
-rw-r--r--lib/packets.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/lib/packets.c b/lib/packets.c
index 8791a3ce..60ee3903 100644
--- a/lib/packets.c
+++ b/lib/packets.c
@@ -204,25 +204,32 @@ ipv6_is_cidr(const struct in6_addr *netmask)
return true;
}
-/* Fills 'b' with a LACP packet whose source address is 'eth_src', LACP actor
- * information is 'actor', and LACP partner information is 'partner'. */
+/* Populates 'b' with a LACP packet containing 'pdu' with source address
+ * 'eth_src'. */
void
-compose_lacp_packet(struct ofpbuf *b, struct lacp_info *actor,
- struct lacp_info *partner,
- const uint8_t eth_src[ETH_ADDR_LEN])
+compose_lacp_packet(struct ofpbuf *b, const uint8_t eth_src[ETH_ADDR_LEN],
+ const struct lacp_pdu *pdu)
{
struct eth_header *eth;
- struct lacp_pdu *pdu;
+ struct lacp_pdu *eth_pdu;
ofpbuf_clear(b);
ofpbuf_prealloc_tailroom(b, ETH_HEADER_LEN + LACP_PDU_LEN);
eth = ofpbuf_put_zeros(b, ETH_HEADER_LEN);
- pdu = ofpbuf_put_zeros(b, LACP_PDU_LEN);
+ eth_pdu = ofpbuf_put(b, pdu, LACP_PDU_LEN);
memcpy(eth->eth_dst, eth_addr_lacp, ETH_ADDR_LEN);
memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN);
eth->eth_type = htons(ETH_TYPE_LACP);
+}
+
+/* Populates 'pdu' with a LACP PDU comprised of 'actor' and 'partner'. */
+void
+compose_lacp_pdu(const struct lacp_info *actor,
+ const struct lacp_info *partner, struct lacp_pdu *pdu)
+{
+ memset(pdu, 0, sizeof *pdu);
pdu->subtype = 1;
pdu->version = 1;