Avoid assertion failure connecting to unsupported remove OpenFlow host.
authorBen Pfaff <blp@nicira.com>
Wed, 24 Sep 2008 16:44:08 +0000 (09:44 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 24 Sep 2008 16:44:08 +0000 (09:44 -0700)
After increasing the length of an OpenFlow buffer, we need to update the
length in the OpenFlow header.

lib/vconn.c

index ee7f678..f287bfd 100644 (file)
@@ -372,6 +372,7 @@ vcs_send_error(struct vconn *vconn)
     error->type = htons(OFPET_HELLO_FAILED);
     error->code = htons(OFPHFC_INCOMPATIBLE);
     ofpbuf_put(b, s, strlen(s));
+    update_openflow_length(b);
     retval = do_send(vconn, b);
     if (retval) {
         ofpbuf_delete(b);