blob: 3a7a1838a64b48b9f447b2f48c58623206732738 [file] [log] [blame]
Gerrit Renkerc40616c2007-12-06 12:26:38 -02001/*
2 * TFRC: main module holding the pieces of the TFRC library together
3 *
4 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
5 * Copyright (c) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
6 */
7#include <linux/module.h>
8#include <linux/moduleparam.h>
9#include "tfrc.h"
10
11#ifdef CONFIG_IP_DCCP_TFRC_DEBUG
12int tfrc_debug;
13module_param(tfrc_debug, bool, 0444);
14MODULE_PARM_DESC(tfrc_debug, "Enable debug messages");
15#endif
16
17extern int dccp_li_init(void);
18extern void dccp_li_exit(void);
19extern int packet_history_init(void);
20extern void packet_history_exit(void);
21
22static int __init tfrc_module_init(void)
23{
24 int rc = dccp_li_init();
25
26 if (rc == 0) {
27 rc = packet_history_init();
28 if (rc != 0)
29 dccp_li_exit();
30 }
31
32 return rc;
33}
34
35static void __exit tfrc_module_exit(void)
36{
37 packet_history_exit();
38 dccp_li_exit();
39}
40
41module_init(tfrc_module_init);
42module_exit(tfrc_module_exit);
43
44MODULE_AUTHOR("Gerrit Renker <gerrit@erg.abdn.ac.uk>, "
45 "Ian McDonald <ian.mcdonald@jandi.co.nz>, "
46 "Arnaldo Carvalho de Melo <acme@redhat.com>");
47MODULE_DESCRIPTION("DCCP TFRC library");
48MODULE_LICENSE("GPL");