From: Olivier Houchard Date: Mon, 15 Apr 2019 17:24:04 +0000 (+0200) Subject: MINOR: connections: Remove the SUB_CALL_UNSUBSCRIBE flag. X-Git-Tag: v2.0-dev3~271 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5eef1f1b40325b1f0ba0a8746536e711518a44d;p=thirdparty%2Fhaproxy.git MINOR: connections: Remove the SUB_CALL_UNSUBSCRIBE flag. Garbage collect SUB_CALL_UNSUBSCIRBE, as it's now unused. --- diff --git a/include/types/connection.h b/include/types/connection.h index ab1f8bea81..9867d81621 100644 --- a/include/types/connection.h +++ b/include/types/connection.h @@ -53,7 +53,6 @@ struct pipe; enum sub_event_type { SUB_RETRY_RECV = 0x00000001, /* Schedule the tasklet when we can attempt to recv again */ SUB_RETRY_SEND = 0x00000002, /* Schedule the tasklet when we can attempt to send again */ - SUB_CALL_UNSUBSCRIBE = 0x00000004, /* The mux wants its unsubscribe() method to be called before destruction of the underlying object */ }; struct wait_event {