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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
use prelude::Protocol;
use ffi::{IntoI32, AF_UNSPEC, AF_INET, AF_INET6, SOCK_DGRAM,
IPPROTO_UDP, AI_PASSIVE, AI_NUMERICSERV};
use dgram_socket::DgramSocket;
use ip::{IpProtocol, IpEndpoint, Resolver, ResolverIter, ResolverQuery, Passive};
use std::io;
use std::fmt;
use std::mem;
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd)]
pub struct Udp {
family: i32,
}
impl Protocol for Udp {
type Endpoint = IpEndpoint<Self>;
fn family_type(&self) -> i32 {
self.family
}
fn socket_type(&self) -> i32 {
SOCK_DGRAM as i32
}
fn protocol_type(&self) -> i32 {
IPPROTO_UDP.i32()
}
unsafe fn uninitialized(&self) -> Self::Endpoint {
mem::uninitialized()
}
}
impl IpProtocol for Udp {
fn v4() -> Udp {
Udp { family: AF_INET as i32 }
}
fn v6() -> Udp {
Udp { family: AF_INET6 as i32 }
}
}
impl fmt::Debug for Udp {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.is_v4() {
write!(f, "UDPv4")
} else if self.is_v6() {
write!(f, "UDPv6")
} else {
unreachable!("Invalid address family ({}).", self.family);
}
}
}
impl fmt::Debug for IpEndpoint<Udp> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Endpoint(UDP/{})", self)
}
}
impl fmt::Debug for Resolver<Udp, DgramSocket<Udp>> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Resolver(UDP)")
}
}
impl ResolverQuery<Udp> for (Passive, u16) {
fn iter(self) -> io::Result<ResolverIter<Udp>> {
let port = self.1.to_string();
ResolverIter::new(&Udp { family: AF_UNSPEC }, "", &port, AI_PASSIVE | AI_NUMERICSERV)
}
}
impl<'a> ResolverQuery<Udp> for (Passive, &'a str) {
fn iter(self) -> io::Result<ResolverIter<Udp>> {
ResolverIter::new(&Udp { family: AF_UNSPEC }, "", self.1, AI_PASSIVE)
}
}
impl<'a, 'b> ResolverQuery<Udp> for (&'a str, &'b str) {
fn iter(self) -> io::Result<ResolverIter<Udp>> {
ResolverIter::new(&Udp { family: AF_UNSPEC }, self.0, self.1, 0)
}
}
pub type UdpEndpoint = IpEndpoint<Udp>;
pub type UdpSocket = DgramSocket<Udp>;
pub type UdpResolver = Resolver<Udp, DgramSocket<Udp>>;
#[test]
fn test_udp() {
assert!(Udp::v4() == Udp::v4());
assert!(Udp::v6() == Udp::v6());
assert!(Udp::v4() != Udp::v6());
}
#[test]
fn test_udp_resolve() {
use core::IoContext;
use ip::*;
let ctx = &IoContext::new().unwrap();
let re = UdpResolver::new(ctx);
for ep in re.resolve(("127.0.0.1", "80")).unwrap() {
assert!(ep == UdpEndpoint::new(IpAddrV4::loopback(), 80));
}
for ep in re.resolve(("::1", "80")).unwrap() {
assert!(ep == UdpEndpoint::new(IpAddrV6::loopback(), 80));
}
for ep in re.resolve(("localhost", "http")).unwrap() {
assert!(ep.addr().is_loopback());
assert!(ep.port() == 80);
}
}
#[test]
fn test_format() {
use core::IoContext;
let ctx = &IoContext::new().unwrap();
println!("{:?}", Udp::v4());
println!("{:?}", UdpEndpoint::new(Udp::v4(), 12345));
println!("{:?}", UdpSocket::new(ctx, Udp::v4()).unwrap());
println!("{:?}", UdpResolver::new(ctx));
}