Chromium Code Reviews| Index: net/udp/udp_socket_win.cc |
| diff --git a/net/udp/udp_socket_win.cc b/net/udp/udp_socket_win.cc |
| index f9ce6799c4beefc05f408c28002e07d512a8d5bc..8bbb98a50291c381eaa0fcb66989baf45866c3d2 100644 |
| --- a/net/udp/udp_socket_win.cc |
| +++ b/net/udp/udp_socket_win.cc |
| @@ -753,4 +753,10 @@ int UDPSocketWin::SetMulticastLoopbackMode(bool loopback) { |
| return OK; |
| } |
| +// TODO(hubbe): Implement differentiated services for windows. |
| +// Note: setsockopt(IP_TOS) does not work on windows XP and later. |
| +int UDPSocketWin::SetDiffServCodePoint(DiffServCodePoint dscp) { |
| + return FAILED; |
|
cbentzel
2013/10/17 01:32:57
NOT_IMPLEMENTED is probably a better choice.
hubbe
2013/10/21 19:39:21
Done.
|
| +} |
| + |
| } // namespace net |