Which Methods i have to use in order to Create the UDP apllication in VC++.
plz give me the sugetions
ramanand
Printable View
Which Methods i have to use in order to Create the UDP apllication in VC++.
plz give me the sugetions
ramanand
--- Vague question.
Use MSDN, Search for CSocket.
Use Google, Search for Beej Guide.
:wave:
A simple example
Vague question indeed but typical of the kind you get from Indian sub-continent outsourcing companies.
It make you think they've just been employed from university and told to get CodeGuru members to write their code for them.
And no I'm not bitter at all. Just correct!
Hi ,
Using socket programming ,
SOCKET socket ;
// for UDP
socket(AF_INET, SOCK_DGRAM, 0);
// For TCP
socket(AF_INET, SOCK_STREAM, 0);
and all the standared method like send & recv refer MSDN.