i was wondering how to use those phobos modules to use networking?
Or you can give a reference to how to use sockets (in a way similar or almost similar to D)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
std.socket.Socket is essentially a semi-thin wrapper around your operating system’s native socket functions. For that reason, I recommend understanding the basics of socket programming in C first – there are plenty of examples for that – then, the std.socket API should be trivial.
For reference: http://digitalmars.com/d/2.0/phobos/std_socket.html