Lines Matching full:mptcp
23 #define pr_fmt(fmt) "MPTCP: " fmt
33 #include <net/mptcp.h>
88 * hash of some information available in the MPTCP socket. Use in mptcp_crypto_key_gen_sha()
101 * This function is called when a new mptcp connection is coming in.
103 * It creates a unique token to identify the new mptcp connection,
139 * This function is called when a new outgoing mptcp connection is
142 * It creates a unique token to identify the new mptcp connection,
145 * On success, the mptcp connection can be found again using
237 * mptcp_token_get_sock - retrieve mptcp connection sock using its token
239 * @token: token of the mptcp connection to retrieve
241 * This function returns the mptcp connection structure with the given token.
242 * A reference count on the mptcp socket returned is taken.
291 * This function returns the first mptcp connection structure found inside the
345 * mptcp_token_destroy_request - remove mptcp connection/token
346 * @req: mptcp request socket dropping the token
370 * mptcp_token_destroy - remove mptcp connection/token
371 * @msk: mptcp connection dropping the token
400 token_hash = alloc_large_system_hash("MPTCP token", in mptcp_token_init()