1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
// TODO: of2m-ify
//
// Of2m-ifying isn't much of a priority right now as the whole action ordeal
// hasn't been fully dissected yet. Once more is known about the inner working
// of actions, it will be of2m-ified.
use bytes::{BufMut, BytesMut};
pub fn create() -> Vec<u8> {
let mut command = BytesMut::new();
command.put_slice(&[
0x01, 0x11, 0x00, 0x05, 0x54, 0x52, 0x41, 0x44, 0x45, 0x07, 0x26, 0x7c,
0x2b, 0x69, 0x6e, 0x76, 0x3e,
]);
// Convert to vector and insert the length
let mut command_as_vec = command.to_vec();
command_as_vec.insert(0, command.len() as u8 + 1);
// Return bytes
command_as_vec
}
|