Use the 0.8.x line of libasync and fix compilation of the (stub) libasync driver.

This commit is contained in:
Sönke Ludwig 2016-12-18 23:55:59 +01:00
parent 2acf44596a
commit 8a365f6d07
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ configuration "select" {
}
configuration "libasync" {
dependency "libasync" version="~>0.7.9"
dependency "libasync" version="~>0.8.2"
versions "EventcoreLibasyncDriver"
}

View file

@ -148,7 +148,7 @@ final class LibasyncEventDriverSockets : EventDriverSockets {
assert(false, "TODO!");
}
override void send(DatagramSocketFD socket, const(ubyte)[] buffer, IOMode mode, DatagramIOCallback on_send_finish, Address target_address = null)
override void send(DatagramSocketFD socket, const(ubyte)[] buffer, IOMode mode, Address target_address, DatagramIOCallback on_send_finish)
{
assert(false, "TODO!");
}
@ -191,7 +191,7 @@ final class LibasyncEventDriverFiles : EventDriverFiles {
assert(false, "TODO!");
}
override FileFD createTemp()
override FileFD adopt(int system_file_handle)
{
assert(false, "TODO!");
}