major_v 156 opal/mca/event/libevent2022/libevent/http.c #define REQ_VERSION_BEFORE(req, major_v, minor_v) \ major_v 157 opal/mca/event/libevent2022/libevent/http.c ((req)->major < (major_v) || \ major_v 158 opal/mca/event/libevent2022/libevent/http.c ((req)->major == (major_v) && (req)->minor < (minor_v))) major_v 160 opal/mca/event/libevent2022/libevent/http.c #define REQ_VERSION_ATLEAST(req, major_v, minor_v) \ major_v 161 opal/mca/event/libevent2022/libevent/http.c ((req)->major > (major_v) || \ major_v 162 opal/mca/event/libevent2022/libevent/http.c ((req)->major == (major_v) && (req)->minor >= (minor_v)))