/*
 * tz_msg.h
 */

#ifndef TZ_MSG_H_
#define TZ_MSG_H_

#include "stdint.h"

typedef struct tz_msg_header {
	/** First 4 bytes should always be id: either cmd_id or resp_id */
	uint32_t id;
	uint32_t content_id;
	uint32_t len;
	uint32_t status;
} __attribute__ ((packed)) tz_msg_header_t;

#endif /* TZ_MSG_H_ */
