Skip to content

Commit

Permalink
add implementations of sock_* functions
Browse files Browse the repository at this point in the history
  • Loading branch information
philoinovsky committed Jun 26, 2021
1 parent e6b292f commit 7d8fae8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/eventloop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,34 @@ void EventLoop::call_at(double when, py::object f)
return call_soon(f);
}

void EventLoop::sock_recv(py::object sock, int bytes)
{

}

void EventLoop::sock_recv_into(py::object sock, py::object buffer)
{

}

void EventLoop::sock_sendall(py::object sock, py::object data)
{

}

void EventLoop::sock_connect(py::object sock, py::object address)
{

}

void EventLoop::sock_accept(py::object sock)
{

}

void EventLoop::sock_sendfile(py::object sock, py::object file, int offset, int count, bool fallback)
{

}

}}}

0 comments on commit 7d8fae8

Please sign in to comment.