xref: /openbmc/libmctp/control.h (revision 4058b2cb7141f1193b76f34ac6376bf9532217b8)
1 #pragma once
2 
3 #include <stdint.h>
4 #include <stdbool.h>
5 
6 #include "libmctp.h"
7 
8 /* Handle a MCTP control message. Returns true for control requests,
9  * false otherwise */
10 bool mctp_control_handler(struct mctp_bus *bus, uint8_t src_eid, bool tag_owner,
11 			  uint8_t msg_tag, const void *data, size_t len);
12