Skip to content

Commit e818ad0

Browse files
committed
---
yaml --- r: 186119 b: refs/heads/try c: 3096784 h: refs/heads/master i: 186117: b391bf0 186115: 24ea237 186111: 43216e1 v: v3
1 parent 7164b20 commit e818ad0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: b4c965ee803a4521d8b4575f634e036f93e408f3
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 3a96d6a9818fe2affc98a187fb1065120458cee9
5-
refs/heads/try: fcb30a0b67b1bd4acbc3422ff74fac5d031ae1ae
5+
refs/heads/try: 3096784a3b1dd7d20bc67f19d4ccd61ae497a7de
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/liblibc/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4195,8 +4195,10 @@ pub mod consts {
41954195
pub const IP_HDRINCL: c_int = 2;
41964196
pub const IP_ADD_MEMBERSHIP: c_int = 12;
41974197
pub const IP_DROP_MEMBERSHIP: c_int = 13;
4198-
pub const IPV6_ADD_MEMBERSHIP: c_int = 12; // don't exist, keep same as IP_ADD_MEMBERSHIP
4199-
pub const IPV6_DROP_MEMBERSHIP: c_int = 13; // don't exist, keep same as IP_DROP_MEMBERSHIP
4198+
// don't exist, keep same as IP_ADD_MEMBERSHIP
4199+
pub const IPV6_ADD_MEMBERSHIP: c_int = 12;
4200+
// don't exist, keep same as IP_DROP_MEMBERSHIP
4201+
pub const IPV6_DROP_MEMBERSHIP: c_int = 13;
42004202

42014203
pub const TCP_NODELAY: c_int = 1;
42024204
//pub const TCP_KEEPIDLE: c_int = ;

0 commit comments

Comments
 (0)