2002-06-10 Robert Collins <rbtcollins@hotmail.com>
* cygserver_transport.cc (create_server_transport): Finish the split out of sockets code from transport_layer_base. Thanks to Nicholas Wourms and Conrad Scott for catching this.
This commit is contained in:
parent
a1178695fc
commit
fec98ec993
@ -37,7 +37,7 @@ class transport_layer_base *create_server_transport()
|
|||||||
if (wincap.is_winnt ())
|
if (wincap.is_winnt ())
|
||||||
temp = new transport_layer_pipes ();
|
temp = new transport_layer_pipes ();
|
||||||
else
|
else
|
||||||
temp = new transport_layer_base ();
|
temp = new transport_layer_sockets ();
|
||||||
return temp;
|
return temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2002-06-10 Robert Collins <rbtcollins@hotmail.com>
|
||||||
|
|
||||||
|
* cygserver_transport.cc (create_server_transport): Finish the split
|
||||||
|
out of sockets code from transport_layer_base. Thanks to Nicholas
|
||||||
|
Wourms and Conrad Scott for catching this.
|
||||||
|
|
||||||
2002-06-08 Christopher Faylor <cgf@redhat.com>
|
2002-06-08 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* pinfo.cc (pinfo_dummy): Initialize to correct size.
|
* pinfo.cc (pinfo_dummy): Initialize to correct size.
|
||||||
|
@ -37,7 +37,7 @@ class transport_layer_base *create_server_transport()
|
|||||||
if (wincap.is_winnt ())
|
if (wincap.is_winnt ())
|
||||||
temp = new transport_layer_pipes ();
|
temp = new transport_layer_pipes ();
|
||||||
else
|
else
|
||||||
temp = new transport_layer_base ();
|
temp = new transport_layer_sockets ();
|
||||||
return temp;
|
return temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user