Skip to content

Commit

Permalink
something useless
Browse files Browse the repository at this point in the history
  • Loading branch information
jansona committed Jul 23, 2020
1 parent d326b89 commit 1b1e4c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Rust_Practice/pop3_rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ fn get_a_mail(socket: &mut TcpStream, index: usize) -> String {

fn main() -> std::io::Result<()> {

let login = "[email protected]";
let password = "ybg19970203ybg";
let login = "";
let password = "";

let mut index = 0;

Expand Down
4 changes: 2 additions & 2 deletions Rust_Practice/smtp_rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ fn send_mail(socket: &mut TcpStream, mail: Mail) {

fn main() -> std::io::Result<()> {

let login = "[email protected]";
let password = "ybg19970203ybg";
let login = "";
let password = "";

let mut stream = TcpStream::connect("smtp.163.com:25")?;
get_response(&mut stream);
Expand Down

0 comments on commit 1b1e4c6

Please sign in to comment.