Minor fix
Changed net_active to a boolean
This commit is contained in:
parent
f1a452f2ed
commit
2e0926ca6a
1 changed files with 3 additions and 3 deletions
|
@ -11,8 +11,8 @@ pub fn network() -> Sender<Vec<i64>> {
|
|||
let tx: Sender<Vec<i64>> = tx.clone();
|
||||
|
||||
thread::spawn( move || {
|
||||
let mut net_active = 1;
|
||||
while net_active == 1 {
|
||||
let mut net_active = true;
|
||||
while net_active {
|
||||
let server_socket = UdpSocket::bind("0.0.0.0:0").unwrap();
|
||||
let target = "100.127.105.90:4000";
|
||||
let dat = rx.recv().unwrap();
|
||||
|
@ -25,7 +25,7 @@ pub fn network() -> Sender<Vec<i64>> {
|
|||
}
|
||||
|
||||
if dat[0] == 0 { // code 0, kills thread
|
||||
net_active = 0;
|
||||
net_active = false;
|
||||
|
||||
}
|
||||
if dat[0] == 1 {
|
||||
|
|
Loading…
Add table
Reference in a new issue