| 612 | } |
| 613 | |
| 614 | static void Test_soak() |
| 615 | { |
| 616 | uint16 nServerPort = k_nStartingServerPort; |
| 617 | SteamNetworkingIPAddr bindAddr, connectAddr; |
| 618 | |
| 619 | // Dual-stack server, IPv4 client (IPv4-mapped path) |
| 620 | bindAddr.Clear(); bindAddr.m_port = nServerPort; |
| 621 | connectAddr.SetIPv4( 0x7f000001, nServerPort ); |
| 622 | Test_Connection( ETestConnectionMode::Soak, bindAddr, connectAddr ); |
| 623 | } |
| 624 | |
| 625 | // Some tests for identity string handling. Doesn't really have anything to do with |
| 626 | // connectivity, this is just a conveinent place for this to live |
nothing calls this directly
no test coverage detected