linux/net/ipv4/tcp_scalable.c

// SPDX-License-Identifier: GPL-2.0-only
/* Tom Kelly's Scalable TCP
 *
 * See http://www.deneholme.net/tom/scalable/
 *
 * John Heffner <[email protected]>
 */

#include <linux/module.h>
#include <net/tcp.h>

/* These factors derived from the recommended values in the aer:
 * .01 and 7/8.
 */
#define TCP_SCALABLE_AI_CNT
#define TCP_SCALABLE_MD_SCALE

static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 acked)
{}

static u32 tcp_scalable_ssthresh(struct sock *sk)
{}

static struct tcp_congestion_ops tcp_scalable __read_mostly =;

static int __init tcp_scalable_register(void)
{}

static void __exit tcp_scalable_unregister(void)
{}

module_init();
module_exit(tcp_scalable_unregister);

MODULE_AUTHOR();
MODULE_LICENSE();
MODULE_DESCRIPTION();