File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,5 @@ int main() {
55 int udp = IPPROTO_UDP ;
66 int ip = IPPROTO_IP ;
77 int ip6 = IPPROTO_IPV6 ;
8- int mptcp = IPPROTO_MPTCP ;
9- return tcp + udp + ip + ip6 + mptcp;
8+ return tcp + udp + ip + ip6;
109}
Original file line number Diff line number Diff line change @@ -14,7 +14,5 @@ fn main_0() -> i32 {
1414 let udp: Value < i32 > = Rc :: new ( RefCell :: new ( libc:: IPPROTO_UDP ) ) ;
1515 let ip: Value < i32 > = Rc :: new ( RefCell :: new ( libc:: IPPROTO_IP ) ) ;
1616 let ip6: Value < i32 > = Rc :: new ( RefCell :: new ( libc:: IPPROTO_IPV6 ) ) ;
17- let mptcp: Value < i32 > = Rc :: new ( RefCell :: new ( libc:: IPPROTO_MPTCP ) ) ;
18- return ( ( ( ( ( * tcp. borrow ( ) ) + ( * udp. borrow ( ) ) ) + ( * ip. borrow ( ) ) ) + ( * ip6. borrow ( ) ) )
19- + ( * mptcp. borrow ( ) ) ) ;
17+ return ( ( ( ( * tcp. borrow ( ) ) + ( * udp. borrow ( ) ) ) + ( * ip. borrow ( ) ) ) + ( * ip6. borrow ( ) ) ) ;
2018}
Original file line number Diff line number Diff line change @@ -16,6 +16,5 @@ unsafe fn main_0() -> i32 {
1616 let mut udp: i32 = libc:: IPPROTO_UDP ;
1717 let mut ip: i32 = libc:: IPPROTO_IP ;
1818 let mut ip6: i32 = libc:: IPPROTO_IPV6 ;
19- let mut mptcp: i32 = libc:: IPPROTO_MPTCP ;
20- return ( ( ( ( ( tcp) + ( udp) ) + ( ip) ) + ( ip6) ) + ( mptcp) ) ;
19+ return ( ( ( ( tcp) + ( udp) ) + ( ip) ) + ( ip6) ) ;
2120}
You can’t perform that action at this time.
0 commit comments