author | alfadur <mail@none> |
Mon, 04 Feb 2019 23:41:18 +0300 | |
changeset 14679 | b87c71ccd17d |
parent 14678 | 08a8605bafaf |
child 14691 | 9f98086de1b6 |
permissions | -rw-r--r-- |
13421 | 1 |
use super::{ |
14462 | 2 |
actions, |
3 |
actions::{Destination, PendingMessage}, |
|
4 |
client::HWClient, |
|
5 |
coretypes::{ClientId, RoomId}, |
|
6 |
handlers, |
|
14397 | 7 |
io::HWServerIO, |
14462 | 8 |
room::HWRoom, |
13421 | 9 |
}; |
13671 | 10 |
use crate::protocol::messages::*; |
14462 | 11 |
use crate::utils; |
12 |
use base64::encode; |
|
13810 | 13 |
use log::*; |
14462 | 14 |
use rand::{thread_rng, RngCore}; |
15 |
use slab; |
|
14509
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
16 |
use std::borrow::BorrowMut; |
12131 | 17 |
|
12857 | 18 |
type Slab<T> = slab::Slab<T>; |
12132 | 19 |
|
12131 | 20 |
pub struct HWServer { |
12148 | 21 |
pub clients: Slab<HWClient>, |
22 |
pub rooms: Slab<HWRoom>, |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
23 |
pub lobby_id: RoomId, |
13424 | 24 |
pub output: Vec<(Vec<ClientId>, HWServerMessage)>, |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
25 |
pub removed_clients: Vec<ClientId>, |
14462 | 26 |
pub io: Box<dyn HWServerIO>, |
12131 | 27 |
} |
28 |
||
29 |
impl HWServer { |
|
14397 | 30 |
pub fn new(clients_limit: usize, rooms_limit: usize, io: Box<dyn HWServerIO>) -> HWServer { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
31 |
let rooms = Slab::with_capacity(rooms_limit); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
32 |
let clients = Slab::with_capacity(clients_limit); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
33 |
let mut server = HWServer { |
14462 | 34 |
clients, |
35 |
rooms, |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
36 |
lobby_id: 0, |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
37 |
output: vec![], |
14397 | 38 |
removed_clients: vec![], |
14462 | 39 |
io, |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
40 |
}; |
14509
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
41 |
server.lobby_id = server.add_room().id; |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
42 |
server |
12131 | 43 |
} |
44 |
||
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
45 |
pub fn add_client(&mut self) -> ClientId { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
46 |
let key: ClientId; |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
47 |
{ |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
48 |
let entry = self.clients.vacant_entry(); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
49 |
key = entry.key(); |
13803 | 50 |
let mut salt = [0u8; 18]; |
51 |
thread_rng().fill_bytes(&mut salt); |
|
52 |
||
53 |
let client = HWClient::new(entry.key(), encode(&salt)); |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
54 |
entry.insert(client); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
55 |
} |
14462 | 56 |
self.send( |
57 |
key, |
|
58 |
&Destination::ToSelf, |
|
59 |
HWServerMessage::Connected(utils::PROTOCOL_VERSION), |
|
60 |
); |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
61 |
key |
12131 | 62 |
} |
12132 | 63 |
|
14678
08a8605bafaf
Server action refactoring part 4 of N
alfadur <mail@none>
parents:
14677
diff
changeset
|
64 |
pub fn remove_client(&mut self, client_id: ClientId) { |
08a8605bafaf
Server action refactoring part 4 of N
alfadur <mail@none>
parents:
14677
diff
changeset
|
65 |
self.removed_clients.push(client_id); |
08a8605bafaf
Server action refactoring part 4 of N
alfadur <mail@none>
parents:
14677
diff
changeset
|
66 |
if self.clients.contains(client_id) { |
08a8605bafaf
Server action refactoring part 4 of N
alfadur <mail@none>
parents:
14677
diff
changeset
|
67 |
self.clients.remove(client_id); |
08a8605bafaf
Server action refactoring part 4 of N
alfadur <mail@none>
parents:
14677
diff
changeset
|
68 |
} |
12132 | 69 |
} |
70 |
||
14509
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
71 |
pub fn add_room(&mut self) -> &mut HWRoom { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
72 |
allocate_room(&mut self.rooms) |
12132 | 73 |
} |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
74 |
|
14509
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
75 |
#[inline] |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
76 |
pub fn create_room( |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
77 |
&mut self, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
78 |
creator_id: ClientId, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
79 |
name: String, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
80 |
password: Option<String>, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
81 |
) -> RoomId { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
82 |
create_room( |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
83 |
&mut self.clients[creator_id], |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
84 |
&mut self.rooms, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
85 |
name, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
86 |
password, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
87 |
) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
88 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
89 |
|
14676
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
90 |
#[inline] |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
91 |
pub fn move_to_room(&mut self, client_id: ClientId, room_id: RoomId) { |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
92 |
move_to_room(&mut self.clients[client_id], &mut self.rooms[room_id]) |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
93 |
} |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
94 |
|
14462 | 95 |
pub fn send( |
96 |
&mut self, |
|
97 |
client_id: ClientId, |
|
98 |
destination: &Destination, |
|
99 |
message: HWServerMessage, |
|
100 |
) { |
|
14677
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14676
diff
changeset
|
101 |
|
13421 | 102 |
} |
103 |
||
14676
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
104 |
pub fn send_msg(&mut self, client_id: ClientId, message: PendingMessage) { |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
105 |
self.send(client_id, &message.destination, message.message) |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
106 |
} |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14509
diff
changeset
|
107 |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
108 |
pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) { |
12144 | 109 |
for action in actions { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
110 |
actions::run_action(self, client_id, action); |
12143 | 111 |
} |
112 |
} |
|
13421 | 113 |
|
14462 | 114 |
pub fn lobby(&self) -> &HWRoom { |
115 |
&self.rooms[self.lobby_id] |
|
116 |
} |
|
13526 | 117 |
|
13421 | 118 |
pub fn has_room(&self, name: &str) -> bool { |
119 |
self.rooms.iter().any(|(_, r)| r.name == name) |
|
120 |
} |
|
121 |
||
122 |
pub fn find_room(&self, name: &str) -> Option<&HWRoom> { |
|
14462 | 123 |
self.rooms |
124 |
.iter() |
|
125 |
.find_map(|(_, r)| Some(r).filter(|r| r.name == name)) |
|
13421 | 126 |
} |
127 |
||
128 |
pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> { |
|
14462 | 129 |
self.rooms |
130 |
.iter_mut() |
|
131 |
.find_map(|(_, r)| Some(r).filter(|r| r.name == name)) |
|
13421 | 132 |
} |
133 |
||
13483 | 134 |
pub fn find_client(&self, nick: &str) -> Option<&HWClient> { |
14462 | 135 |
self.clients |
136 |
.iter() |
|
137 |
.find_map(|(_, c)| Some(c).filter(|c| c.nick == nick)) |
|
13483 | 138 |
} |
139 |
||
140 |
pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> { |
|
14462 | 141 |
self.clients |
142 |
.iter_mut() |
|
143 |
.find_map(|(_, c)| Some(c).filter(|c| c.nick == nick)) |
|
13483 | 144 |
} |
145 |
||
13421 | 146 |
pub fn select_clients<F>(&self, f: F) -> Vec<ClientId> |
14462 | 147 |
where |
148 |
F: Fn(&(usize, &HWClient)) -> bool, |
|
149 |
{ |
|
150 |
self.clients.iter().filter(f).map(|(_, c)| c.id).collect() |
|
13421 | 151 |
} |
152 |
||
153 |
pub fn room_clients(&self, room_id: RoomId) -> Vec<ClientId> { |
|
154 |
self.select_clients(|(_, c)| c.room_id == Some(room_id)) |
|
155 |
} |
|
156 |
||
13525 | 157 |
pub fn protocol_clients(&self, protocol: u16) -> Vec<ClientId> { |
13421 | 158 |
self.select_clients(|(_, c)| c.protocol_number == protocol) |
159 |
} |
|
160 |
||
161 |
pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> { |
|
162 |
let room_id = self.clients[self_id].room_id; |
|
14462 | 163 |
self.select_clients(|(id, c)| *id != self_id && c.room_id == room_id) |
13421 | 164 |
} |
165 |
||
166 |
pub fn client_and_room(&mut self, client_id: ClientId) -> (&mut HWClient, Option<&mut HWRoom>) { |
|
167 |
let c = &mut self.clients[client_id]; |
|
168 |
if let Some(room_id) = c.room_id { |
|
169 |
(c, Some(&mut self.rooms[room_id])) |
|
170 |
} else { |
|
171 |
(c, None) |
|
172 |
} |
|
173 |
} |
|
13450
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
174 |
|
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
175 |
pub fn room(&mut self, client_id: ClientId) -> Option<&mut HWRoom> { |
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
176 |
self.client_and_room(client_id).1 |
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
177 |
} |
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
178 |
} |
14509
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
179 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
180 |
fn allocate_room(rooms: &mut Slab<HWRoom>) -> &mut HWRoom { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
181 |
let entry = rooms.vacant_entry(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
182 |
let key = entry.key(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
183 |
let room = HWRoom::new(entry.key()); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
184 |
entry.insert(room) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
185 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
186 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
187 |
fn create_room( |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
188 |
client: &mut HWClient, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
189 |
rooms: &mut Slab<HWRoom>, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
190 |
name: String, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
191 |
password: Option<String>, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
192 |
) -> RoomId { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
193 |
let room = allocate_room(rooms); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
194 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
195 |
room.master_id = Some(client.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
196 |
room.name = name; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
197 |
room.password = password; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
198 |
room.protocol_number = client.protocol_number; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
199 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
200 |
room.players_number = 1; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
201 |
room.ready_players_number = 1; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
202 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
203 |
client.room_id = Some(room.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
204 |
client.set_is_master(true); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
205 |
client.set_is_ready(true); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
206 |
client.set_is_joined_mid_game(false); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
207 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
208 |
room.id |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
209 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
210 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
211 |
fn move_to_room(client: &mut HWClient, room: &mut HWRoom) { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
212 |
debug_assert!(client.room_id != Some(room.id)); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
213 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
214 |
room.players_number += 1; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
215 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
216 |
client.room_id = Some(room.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
217 |
client.set_is_joined_mid_game(room.game_info.is_some()); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
218 |
client.set_is_in_game(room.game_info.is_some()); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
219 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
220 |
if let Some(ref mut info) = room.game_info { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
221 |
let teams = info.client_teams(client.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
222 |
client.teams_in_game = teams.clone().count() as u8; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
223 |
client.clan = teams.clone().next().map(|t| t.color); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
224 |
let team_names: Vec<_> = teams.map(|t| t.name.clone()).collect(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
225 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
226 |
if !team_names.is_empty() { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
227 |
info.left_teams.retain(|name| !team_names.contains(&name)); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
228 |
info.teams_in_game += team_names.len() as u8; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
229 |
room.teams = info |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
230 |
.teams_at_start |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
231 |
.iter() |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
232 |
.filter(|(_, t)| !team_names.contains(&t.name)) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
233 |
.cloned() |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
234 |
.collect(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
235 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
236 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14462
diff
changeset
|
237 |
} |