@@ -560,7 +560,7 @@ fn test_httpd(guest_ip: IpAddr) -> Result<()> {
560
560
561
561
fn test_testudp ( guest_ip : IpAddr ) -> Result < ( ) > {
562
562
thread:: sleep ( Duration :: from_secs ( 10 ) ) ;
563
- let buf = "exit " ;
563
+ let buf = "Hermit " ;
564
564
let socket_addr = SocketAddr :: new ( guest_ip, 9975 ) ;
565
565
eprintln ! ( "[CI] send {buf:?} via UDP to {socket_addr}" ) ;
566
566
let socket = UdpSocket :: bind ( ( Ipv4Addr :: UNSPECIFIED , 0 ) ) ?;
@@ -572,7 +572,7 @@ fn test_testudp(guest_ip: IpAddr) -> Result<()> {
572
572
573
573
fn test_miotcp ( guest_ip : IpAddr ) -> Result < ( ) > {
574
574
thread:: sleep ( Duration :: from_secs ( 10 ) ) ;
575
- let buf = "exit " ;
575
+ let buf = "Hermit " ;
576
576
let socket_addr = SocketAddr :: new ( guest_ip, 9975 ) ;
577
577
eprintln ! ( "[CI] send {buf:?} via TCP to {socket_addr}" ) ;
578
578
let mut stream = TcpStream :: connect ( socket_addr) ?;
@@ -587,7 +587,7 @@ fn test_miotcp(guest_ip: IpAddr) -> Result<()> {
587
587
588
588
fn test_poll ( guest_ip : IpAddr ) -> Result < ( ) > {
589
589
thread:: sleep ( Duration :: from_secs ( 10 ) ) ;
590
- let buf = "exit " ;
590
+ let buf = "Hermit " ;
591
591
let socket_addr = SocketAddr :: new ( guest_ip, 9975 ) ;
592
592
eprintln ! ( "[CI] send {buf:?} via TCP to {socket_addr}" ) ;
593
593
let mut stream = TcpStream :: connect ( socket_addr) ?;
@@ -602,7 +602,7 @@ fn test_poll(guest_ip: IpAddr) -> Result<()> {
602
602
603
603
fn test_mioudp ( guest_ip : IpAddr ) -> Result < ( ) > {
604
604
thread:: sleep ( Duration :: from_secs ( 10 ) ) ;
605
- let buf = "exit " ;
605
+ let buf = "Hermit " ;
606
606
let socket_addr = SocketAddr :: new ( guest_ip, 9975 ) ;
607
607
eprintln ! ( "[CI] send {buf:?} via UDP to {socket_addr}" ) ;
608
608
let socket = UdpSocket :: bind ( ( Ipv4Addr :: UNSPECIFIED , 0 ) ) ?;
0 commit comments