SFML/examples/sockets/Sockets.cpp

53 lines
1.3 KiB
C++
Raw Normal View History

////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
2024-09-24 03:55:33 +08:00
#include "TCP.hpp"
#include "UDP.hpp"
2024-09-24 03:55:33 +08:00
#include <iostream>
////////////////////////////////////////////////////////////
/// Entry point of application
///
/// \return Application exit code
///
////////////////////////////////////////////////////////////
int main()
{
// Choose an arbitrary port for opening sockets
const unsigned short port = 50001;
// TCP, UDP or connected UDP ?
2024-04-27 14:44:27 +08:00
char protocol = 0;
std::cout << "Do you want to use TCP (t) or UDP (u)? ";
2022-07-05 00:20:58 +08:00
std::cin >> protocol;
// Client or server ?
2024-04-27 14:44:27 +08:00
char who = 0;
std::cout << "Do you want to be a server (s) or a client (c)? ";
2022-07-05 00:20:58 +08:00
std::cin >> who;
if (protocol == 't')
{
// Test the TCP protocol
if (who == 's')
runTcpServer(port);
else
runTcpClient(port);
}
else
{
// Test the unconnected UDP protocol
if (who == 's')
runUdpServer(port);
else
runUdpClient(port);
}
// Wait until the user presses 'enter' key
std::cout << "Press enter to exit..." << std::endl;
std::cin.ignore(10000, '\n');
std::cin.ignore(10000, '\n');
}