Newer
Older
Sebastian Dröge
committed
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (C) 2020 Sebastian Dröge <sebastian@centricular.com>
//
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
use serde::{Deserialize, Serialize};
/// Messages sent from the publisher to the server.
#[derive(Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum PublisherMessage {
CreateRoom {
name: String,
description: Option<String>,
},
DeleteRoom,
Ice {
candidate: String,
#[serde(rename = "sdpMLineIndex")]
sdp_mline_index: u32,
},
Sdp {
#[serde(rename = "type")]
type_: String,
sdp: String,
},
}
/// Messages sent from the the server to the publisher.
#[derive(Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ServerMessage {
Error {
message: String,
},
RoomCreated {
id: uuid::Uuid,
},
Ice {
candidate: String,
#[serde(rename = "sdpMLineIndex")]
sdp_mline_index: u32,
},
Sdp {
#[serde(rename = "type")]
type_: String,
sdp: String,
},
}