[Issue 3489] Address family not supported by protocol family on freebsd

2015-06-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3489 Andrei Alexandrescu changed: What|Removed |Added Version|unspecified |D2 --

[Issue 3489] Address family not supported by protocol family on freebsd

2010-05-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3489 Shin Fujishiro changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 3489] Address family not supported by protocol family on freebsd

2009-11-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3489 Travis Boucher changed: What|Removed |Added CC||boucher.tra...@gmail.com --- Comment

[Issue 3489] Address family not supported by protocol family on freebsd

2009-11-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3489 --- Comment #3 from changlon 2009-11-08 20:46:08 PST --- the follow code can raise the same error : import std.socket; void main(){ auto sock = new TcpSocket(new InternetAddress("127.0.0.1", 80)); } -- Configure issuemail: http

[Issue 3489] Address family not supported by protocol family on freebsd

2009-11-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3489 --- Comment #2 from changlon 2009-11-08 19:22:21 PST --- freebsd 7.1 release have the same error. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 3489] Address family not supported by protocol family on freebsd

2009-11-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3489 --- Comment #1 from changlon 2009-11-08 09:24:08 PST --- import std.stdio, std.socket, std.socketstream, std.stream; void main(){ auto Socket sock = new TcpSocket(new InternetAddress("127.0.0.1", 80));