test completed
This commit is contained in:
parent
464b661bd7
commit
15aa4ec967
src
target/rls/debug
deps/save-analysis
incremental
minecraft_proxy-1rcub4p4nhz2v
minecraft_proxy-2hz3279w2aron
s-gdpdqg2wtk-kfpanp-working
s-gdpdqg2wtk-kfpanp.locks-gdpdqh4g4z-1bzud8d-34n19midchxig
s-gdpdqh4g4z-1bzud8d.locks-gdpe95wzhi-1ecgfip-3mnxj42tm81ww
s-gdpe95wzhi-1ecgfip.lock@ -1,7 +1,6 @@
|
||||
use std::string;
|
||||
|
||||
|
||||
|
||||
pub struct HandShake<'a> {
|
||||
len_pack: u8,
|
||||
len_dom: u8,
|
||||
|
@ -32,6 +32,8 @@ impl<'a> Client<'a> {
|
||||
println!("len_pack {}", self.hs.getHostName());
|
||||
}
|
||||
|
||||
//pub get_hostname(buf &mod)
|
||||
|
||||
fn join_conexions_mutex(c1: Arc<Mutex<TcpStream>>,
|
||||
c2: Arc<Mutex<TcpStream>>,
|
||||
run: Arc<RwLock<bool>>,
|
||||
|
14
src/main.rs
14
src/main.rs
@ -15,10 +15,18 @@ fn main() {
|
||||
stream.flush();*/
|
||||
println!("Go!");
|
||||
let leng = stream.read(&mut buf).unwrap();
|
||||
println!("{}", leng);
|
||||
println!("{}", buf[6]);
|
||||
if buf[0] < 200 {
|
||||
buf[(buf[0]-1) as usize] += 2;
|
||||
let mut sstream = TcpStream::connect("127.0.0.1:25565").unwrap();
|
||||
let mut sstream;
|
||||
|
||||
if buf[6]==49 {
|
||||
buf[(buf[0]-1) as usize] -= 2;
|
||||
sstream = TcpStream::connect("127.0.0.1:25565").unwrap();
|
||||
} else {
|
||||
buf[(buf[0]-1) as usize] -= 1;
|
||||
sstream = TcpStream::connect("127.0.0.1:25566").unwrap();
|
||||
}
|
||||
//let mut sstream = TcpStream::connect("127.0.0.1:25565").unwrap();
|
||||
sstream.write(&buf[.. leng]);
|
||||
let c1 = client::Client::new(stream,sstream, &buf);
|
||||
c1.to_string();
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/rls/debug/incremental/minecraft_proxy-2hz3279w2aron/s-gdpdqg2wtk-kfpanp-working/dep-graph.bin
BIN
target/rls/debug/incremental/minecraft_proxy-2hz3279w2aron/s-gdpdqg2wtk-kfpanp-working/dep-graph.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user