File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
branches/snap-stage3/src/libstd Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 3d76922f973caa358cf803d5539dbfadeb3ca830
4
+ refs/heads/snap-stage3: 6b42e6b29818a4d08da65d1a69cc7e6c2c894062
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ fn test_connect() {
117
117
connect ( thread, 0u32 , "74.125.224.146" , chan) ;
118
118
alt comm:: recv ( port) {
119
119
connected ( cd) {
120
- close_connection ( thread, cd ) ;
120
+ close_connection ( thread, 0u32 ) ;
121
121
}
122
122
}
123
123
join_thread ( thread) ;
@@ -134,10 +134,10 @@ fn test_http() {
134
134
connect ( thread, 0u32 , "74.125.224.146" , chan) ;
135
135
alt comm:: recv ( port) {
136
136
connected ( cd) {
137
- write ( thread, cd , str:: bytes ( "GET / HTTP/1.0\n \n " ) , chan) ;
137
+ write ( thread, 0u32 , str:: bytes ( "GET / HTTP/1.0\n \n " ) , chan) ;
138
138
alt comm:: recv ( port) {
139
139
wrote ( cd) {
140
- read_start ( thread, cd , chan) ;
140
+ read_start ( thread, 0u32 , chan) ;
141
141
let keep_going = true ;
142
142
while keep_going {
143
143
alt comm:: recv ( port) {
@@ -157,7 +157,7 @@ fn test_http() {
157
157
}
158
158
}
159
159
}
160
- close_connection ( thread, cd ) ;
160
+ close_connection ( thread, 0u32 ) ;
161
161
}
162
162
}
163
163
}
You can’t perform that action at this time.
0 commit comments