Ticket #2105: socket.patch
| File socket.patch, 2.7 kB (added by llucax, 4 months ago) |
|---|
Updated patch |
-
a/tango/net/device/Berkeley.d
old new 221 221 222 222 private typedef int socket_t = ~0; 223 223 224 p ackage extern (Windows)224 private extern (Windows) 225 225 { 226 226 alias closesocket close; 227 227 … … 346 346 347 347 private typedef int socket_t = -1; 348 348 349 p ackage extern (C)349 private extern (C) 350 350 { 351 351 socket_t socket(int af, int type, int protocol); 352 352 int fcntl(socket_t s, int f, ...); -
a/tango/net/device/Datagram.d
old new 13 13 14 14 module tango.net.device.Datagram; 15 15 16 package import tango.net.device.Socket; 16 private import tango.net.device.Socket; 17 private import tango.net.device.Berkeley; 17 18 18 19 /******************************************************************************* 19 20 -
a/tango/net/device/LocalSocket.d
old new 13 13 module tango.net.device.LocalSocket; 14 14 15 15 private import tango.net.device.Socket; 16 private import tango.net.device.Berkeley; 16 17 17 18 /******************************************************************************* 18 19 -
a/tango/net/device/Multicast.d
old new 15 15 16 16 public import tango.net.InternetAddress; 17 17 public import tango.net.device.Datagram; 18 private import tango.net.device.Berkeley; 18 19 19 20 /****************************************************************************** 20 21 -
a/tango/net/device/SSLSocket.d
old new 14 14 15 15 private import tango.net.device.Socket; 16 16 17 private import tango.net.device.Berkeley; 18 17 19 private import tango.net.util.c.OpenSSL; 18 20 19 21 /******************************************************************************* -
a/tango/net/ftp/FtpClient.d
old new 13 13 private 14 14 { 15 15 import tango.net.ftp.Telnet; 16 import tango.net.device.Berkeley; 16 17 import tango.text.Util; 17 18 import tango.time.Clock; 18 19 import tango.text.Regex: Regex;










