1 // Copyright 2024, The Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 use liberror::Error;
16 use smoltcp::socket::tcp::{ListenError, RecvError, SendError};
17
recv_to_unified(err: RecvError) -> Error18 pub fn recv_to_unified(err: RecvError) -> Error {
19 match err {
20 RecvError::InvalidState => Error::InvalidState,
21 RecvError::Finished => Error::Finished,
22 }
23 }
24
send_to_unified(err: SendError) -> Error25 pub fn send_to_unified(err: SendError) -> Error {
26 match err {
27 SendError::InvalidState => Error::InvalidState,
28 }
29 }
30
listen_to_unified(err: ListenError) -> Error31 pub fn listen_to_unified(err: ListenError) -> Error {
32 match err {
33 ListenError::InvalidState => Error::InvalidState,
34 ListenError::Unaddressable => Error::Unaddressable,
35 }
36 }
37