We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7b02c commit 6a04eb9Copy full SHA for 6a04eb9
src/unix/linux_like/linux/musl/b32/mips/mod.rs
@@ -161,6 +161,24 @@ s! {
161
pub f_namemax: ::c_ulong,
162
__f_spare: [::c_int; 6],
163
}
164
+
165
+ pub struct nlmsghdr {
166
+ pub nlmsg_len: u32,
167
+ pub nlmsg_type: u16,
168
+ pub nlmsg_flags: u16,
169
+ pub nlmsg_seq: u32,
170
+ pub nlmsg_pid: u32,
171
+ }
172
173
+ pub struct nlmsgerr {
174
+ pub error: ::c_int,
175
+ pub msg: nlmsghdr,
176
177
178
+ pub struct nlattr {
179
+ pub nla_len: u16,
180
+ pub nla_type: u16,
181
182
183
184
pub const SIGSTKSZ: ::size_t = 8192;
0 commit comments