Skip to content
Commit 749c08f8 authored by Richard Sailer's avatar Richard Sailer Committed by David S. Miller
Browse files

net: dccp: Add SIOCOUTQ IOCTL support (send buffer fill)



This adds support for the SIOCOUTQ IOCTL to get the send buffer fill
of a DCCP socket, like UDP and TCP sockets already have.

Regarding the used data field: DCCP uses per packet sequence numbers,
not per byte, so sequence numbers can't be used like in TCP. sk_wmem_queued
is not used by DCCP and always 0, even in test on highly congested paths.
Therefore this uses sk_wmem_alloc like in UDP.

Signed-off-by: default avatarRichard Sailer <richard_siegfried@systemli.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 09a0d326
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment