digitalmars.D.learn - Sockets and D?
- Jimi_Hendrix (2/2) Apr 02 2009 Hi, I am new to D but not to programming. I have had some socket experi...
- Denis Koroskin (4/8) Apr 02 2009 Hi!
- jimi hendrix (2/4) Apr 02 2009 tutorial? also what do i need to download to use tango?
- Denis Koroskin (6/10) Apr 02 2009 http://dsource.org/projects/tango
- jimi hendrix (2/18) Apr 04 2009 Thanks, I will post here if I have questions.
- downs (3/6) Apr 05 2009 As certain Tango users have neglected to tell you, Phobos also has a per...
Hi, I am new to D but not to programming. I have had some socket experience before. How would i connect to a server using sockets in D? A link to a D socket tutorial (if one exists) would also be appreciated. by the way, first post to a newsgroup for me
Apr 02 2009
On Fri, 03 Apr 2009 04:19:10 +0400, Jimi_Hendrix <myspot40 gmail.com> wrote:Hi, I am new to D but not to programming. I have had some socket experience before. How would i connect to a server using sockets in D? A link to a D socket tutorial (if one exists) would also be appreciated. by the way, first post to a newsgroup for meHi! I'd suggest you to look at Tango as it has very impressive networking feature set. Alternatively, you can use all those BSD sockets API functions from D directly (as you'd do in C/C++), but I wouldn't recommend going that low-lever.
Apr 02 2009
On Fri, 03 Apr 2009 04:35:21 +0400, Denis Koroskin wrote:I'd suggest you to look at Tango as it has very impressive networking feature set.tutorial? also what do i need to download to use tango?
Apr 02 2009
On Fri, 03 Apr 2009 04:55:59 +0400, jimi hendrix <myspot40 gmail.com> wrote:On Fri, 03 Apr 2009 04:35:21 +0400, Denis Koroskin wrote:http://dsource.org/projects/tango http://dsource.org/projects/tango/wiki/Download http://dsource.org/projects/tango/wiki/Tutorials http://dsource.org/projects/tango/wiki/Examples Tango usually bundled with a compiler so that you get started faster.I'd suggest you to look at Tango as it has very impressive networking feature set.tutorial? also what do i need to download to use tango?
Apr 02 2009
On Fri, 03 Apr 2009 04:59:52 +0400, Denis Koroskin wrote:On Fri, 03 Apr 2009 04:55:59 +0400, jimi hendrix <myspot40 gmail.com> wrote:Thanks, I will post here if I have questions.On Fri, 03 Apr 2009 04:35:21 +0400, Denis Koroskin wrote:http://dsource.org/projects/tango http://dsource.org/projects/tango/wiki/Download http://dsource.org/projects/tango/wiki/Tutorials http://dsource.org/projects/tango/wiki/Examples Tango usually bundled with a compiler so that you get started faster.I'd suggest you to look at Tango as it has very impressive networking feature set.tutorial? also what do i need to download to use tango?
Apr 04 2009
Jimi_Hendrix wrote:Hi, I am new to D but not to programming. I have had some socket experience before. How would i connect to a server using sockets in D? A link to a D socket tutorial (if one exists) would also be appreciated. by the way, first post to a newsgroup for meAs certain Tango users have neglected to tell you, Phobos also has a perfectly servicable socket interface in std.socket. If you know Sockets in C, you should have no problem with it. http://digitalmars.com/d/1.0/phobos/std_socket.html
Apr 05 2009