]> bbs.cooldavid.org Git - net-next-2.6.git/commit
dccp: Return-value convention of hc_tx_send_packet()
authorGerrit Renker <gerrit@erg.abdn.ac.uk>
Wed, 27 Oct 2010 19:16:25 +0000 (19:16 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 Oct 2010 17:27:00 +0000 (10:27 -0700)
commitfe84f4140f0d24deca8591e38926b95cfd097e62
tree5b4c809f131105fddb533776632ff1d546b604a7
parentde7fe7874dc55e8226245c50f07dec3c7b285044
dccp: Return-value convention of hc_tx_send_packet()

This patch reorganises the return value convention of the CCID TX sending
function, to permit more flexible schemes, as required by subsequent patches.

Currently the convention is
 * values < 0     mean error,
 * a value == 0   means "send now", and
 * a value x > 0  means "send in x milliseconds".

The patch provides symbolic constants and a function to interpret return values.

In addition, it caps the maximum positive return value to 0xFFFF milliseconds,
corresponding to 65.535 seconds.  This is possible since in CCID-3/4 the
maximum possible inter-packet gap is fixed at t_mbi = 64 sec.

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dccp/ccid.h
net/dccp/ccids/ccid3.c