diff options
author | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2007-10-04 17:43:42 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:54:36 -0400 |
commit | 451bc0473f010babeadd888ae8ec1015959fd1b2 (patch) | |
tree | 19aa37b414f2879556bfa376aac277b9cd547a63 /net/dccp/options.c | |
parent | 5e28599a6e45eb8ce7e50510b06c3a34ebf1a8fa (diff) |
[DCCP]: Tidy-up -- minisock initialisation
This
* removes a declaration of a non-existent function
__dccp_minisock_init;
* shifts the initialisation function dccp_minisock_init() from
options.c to minisocks.c, where it is more naturally expected to
be.
Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Ian McDonald <ian.mcdonald@jandi.co.nz>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/options.c')
-rw-r--r-- | net/dccp/options.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/net/dccp/options.c b/net/dccp/options.c index a57fcbd7d03c..172eb6ba8702 100644 --- a/net/dccp/options.c +++ b/net/dccp/options.c | |||
@@ -29,16 +29,6 @@ int sysctl_dccp_feat_ack_ratio = DCCPF_INITIAL_ACK_RATIO; | |||
29 | int sysctl_dccp_feat_send_ack_vector = DCCPF_INITIAL_SEND_ACK_VECTOR; | 29 | int sysctl_dccp_feat_send_ack_vector = DCCPF_INITIAL_SEND_ACK_VECTOR; |
30 | int sysctl_dccp_feat_send_ndp_count = DCCPF_INITIAL_SEND_NDP_COUNT; | 30 | int sysctl_dccp_feat_send_ndp_count = DCCPF_INITIAL_SEND_NDP_COUNT; |
31 | 31 | ||
32 | void dccp_minisock_init(struct dccp_minisock *dmsk) | ||
33 | { | ||
34 | dmsk->dccpms_sequence_window = sysctl_dccp_feat_sequence_window; | ||
35 | dmsk->dccpms_rx_ccid = sysctl_dccp_feat_rx_ccid; | ||
36 | dmsk->dccpms_tx_ccid = sysctl_dccp_feat_tx_ccid; | ||
37 | dmsk->dccpms_ack_ratio = sysctl_dccp_feat_ack_ratio; | ||
38 | dmsk->dccpms_send_ack_vector = sysctl_dccp_feat_send_ack_vector; | ||
39 | dmsk->dccpms_send_ndp_count = sysctl_dccp_feat_send_ndp_count; | ||
40 | } | ||
41 | |||
42 | static u32 dccp_decode_value_var(const unsigned char *bf, const u8 len) | 32 | static u32 dccp_decode_value_var(const unsigned char *bf, const u8 len) |
43 | { | 33 | { |
44 | u32 value = 0; | 34 | u32 value = 0; |