From: Etienne Dechamps Date: Sat, 9 May 2015 16:54:34 +0000 (+0100) Subject: Expose the raw SPTPS send interface from net_packet. X-Git-Tag: release-1.1pre12~169 X-Git-Url: http://tinc-vpn.org/git/browse?a=commitdiff_plain;h=1296f715b57c88c17299cacadaccdc0be898e0b1;hp=1296f715b57c88c17299cacadaccdc0be898e0b1;p=tinc Expose the raw SPTPS send interface from net_packet. net_packet doesn't actually use send_sptps_data(); it only uses send_sptps_data_priv(). In addition, the only user of send_sptps_data() is protocol_key. Therefore it makes sense to expose send_sptps_data_priv() directly, and move send_sptps_data() (which is basically just boilerplate) as a local function in protocol_key. ---