connmgr: Move send_len from ofputil_packet_in to ofproto_packet_in.
[sliver-openvswitch.git] / lib / ofp-util.h
index 7355559..b1275d7 100644 (file)
@@ -376,18 +376,14 @@ struct ofpbuf *ofputil_encode_flow_removed(const struct ofputil_flow_removed *,
 
 /* Abstract packet-in message. */
 struct ofputil_packet_in {
-    struct list list_node; /* For queueing packet_ins. */
-
     const void *packet;
     size_t packet_len;
 
     enum ofp_packet_in_reason reason;    /* One of OFPR_*. */
-    uint16_t controller_id;              /* Controller ID to send to. */
     uint8_t table_id;
     ovs_be64 cookie;
 
     uint32_t buffer_id;
-    int send_len;
     uint16_t total_len;         /* Full length of frame. */
 
     struct flow_metadata fmd;   /* Metadata at creation time. */