Skip to content
Snippets Groups Projects

Implements #89 PNG chunking

Merged Nicolas Pope requested to merge feature/89/chunking into master
@@ -596,13 +596,13 @@ int Peer::_send() {
vector<WSABUF> wsabuf(send_size);
for (int i = 0; i < send_size; i++) {
wsabuf[i].len = send_vec[i].iov_len;
wsabuf[i].len = (ULONG)send_vec[i].iov_len;
wsabuf[i].buf = (char*)send_vec[i].iov_base;
//c += ftl::net::internal::send(sock_, (char*)send_vec[i].iov_base, (int)send_vec[i].iov_len, 0);
}
int bytessent;
int c = WSASend(sock_, wsabuf.data(), send_size, &bytessent, 0, NULL, NULL);
DWORD bytessent;
int c = WSASend(sock_, wsabuf.data(), send_size, (LPDWORD)&bytessent, 0, NULL, NULL);
#else
int c = ftl::net::internal::writev(sock_, send_buf_.vector(), (int)send_buf_.vector_size());
#endif
Loading