]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Change default mode of pipes to transparent.
authorOndrej Zajicek <santiago@crfreenet.org>
Mon, 21 Dec 2009 10:53:58 +0000 (11:53 +0100)
committerOndrej Zajicek <santiago@crfreenet.org>
Mon, 21 Dec 2009 10:53:58 +0000 (11:53 +0100)
Opaque pipes are obsolete and should disappear in the future.

proto/pipe/config.Y

index 4e6c80cd4e77a62fd89573033e9c4cd531121600..e1c981bbf367a975ee9d14a15d1e64bb465823a0 100644 (file)
@@ -25,7 +25,7 @@ CF_ADDTO(proto, pipe_proto '}')
 pipe_proto_start: proto_start PIPE {
      this_proto = proto_config_new(&proto_pipe, sizeof(struct pipe_config));
      this_proto->preference = DEF_PREF_PIPE;
-     PIPE_CFG->mode = PIPE_OPAQUE;
+     PIPE_CFG->mode = PIPE_TRANSPARENT;
   }
  ;