blob: 579ea557d4ca6fe721cbc3cc84164977ee4e8072 [file] [log] [blame]
Matt Johnston4058b2c2024-11-07 14:53:50 +08001#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 */
10bool 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);