-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding TCP support #45
Conversation
5 Issues |
60dea53
to
e248822
Compare
xtransmit/tcp_socket.hpp
Outdated
void set_blocking_flags(bool is_blocking) const; | ||
|
||
private: | ||
SOCKET m_bind_socket = -1; // INVALID_SOCK; |
Check notice
Code scanning / CodeQL
Commented-out code Note
//output << stats.tcpi_min_rtt << ','; | ||
//output << stats.tcpi_bytes_acked << ','; | ||
//output << stats.tcpi_bytes_received << ','; | ||
//output << stats.tcpi_delivery_rate << ','; |
Check notice
Code scanning / CodeQL
Commented-out code Note
xtransmit/tcp_socket.cpp
Outdated
#include "socketoptions.hpp" | ||
|
||
#ifndef _WIN32 | ||
//#include <linux/tcp.h> |
Check notice
Code scanning / CodeQL
Commented-out code Note
Added TCP socket to the list of available protocols. As it works in a "buffer" mode, app metrics would not work for it. This requires additional handling if ever required.