Click here to Skip to main content
15,902,634 members

Comments by Member 15245946 (Top 4 by date)

Member 15245946 19-Jun-21 6:37am View    
I initialise them:
localport = strtoul(argv[1], NULL, 0);
remoteport = strtoul(argv[3], NULL, 0);
But something is still wrong, Now it is working: one person is sender and second one is receiver..
Member 15245946 18-Jun-21 13:36pm View    
Thanks
It's working
Member 15245946 18-Jun-21 7:02am View    
./chat 127.0.0.1 1345 1346
Member 15245946 14-Jun-21 13:38pm View    
Thanks, and is it possible to have program, where you can send and receive messages, something like communication between to people?
This is my task: network programme enabling mutual
communication between 2 users in UDP. When on standard input, the user starts typing.
waits for the entire line and sends it to the other
when it receives a line from the network, it displays it on the standard
output (waits if the user is already typing)