⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sm.h

📁 linux-2.6.15.6
💻 H
📖 第 1 页 / 共 2 页
字号:
/* SCTP kernel reference Implementation * (C) Copyright IBM Corp. 2001, 2004 * Copyright (c) 1999-2000 Cisco, Inc. * Copyright (c) 1999-2001 Motorola, Inc. * Copyright (c) 2001 Intel Corp. * * This file is part of the SCTP kernel reference Implementation * * These are definitions needed by the state machine. * * The SCTP reference implementation is free software; * you can redistribute it and/or modify it under the terms of * the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * The SCTP reference implementation is distributed in the hope that it * will be useful, but WITHOUT ANY WARRANTY; without even the implied *                 ************************ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU CC; see the file COPYING.  If not, write to * the Free Software Foundation, 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * Please send any bug reports or fixes you make to the * email addresses: *    lksctp developers <lksctp-developers@lists.sourceforge.net> * * Or submit a bug report through the following website: *    http://www.sf.net/projects/lksctp * * Written or modified by: *    La Monte H.P. Yarroll <piggy@acm.org> *    Karl Knutson <karl@athena.chicago.il.us> *    Xingang Guo <xingang.guo@intel.com> *    Jon Grimm <jgrimm@us.ibm.com> *    Dajiang Zhang <dajiang.zhang@nokia.com> *    Sridhar Samudrala <sri@us.ibm.com> *    Daisy Chang <daisyc@us.ibm.com> *    Ardelle Fan <ardelle.fan@intel.com> *    Kevin Gao <kevin.gao@intel.com> * * Any bugs reported given to us we will try to fix... any fixes shared will * be incorporated into the next SCTP release. */#include <linux/types.h>#include <linux/compiler.h>#include <linux/slab.h>#include <linux/in.h>#include <net/sctp/command.h>#include <net/sctp/sctp.h>#ifndef __sctp_sm_h__#define __sctp_sm_h__/* * Possible values for the disposition are: */typedef enum {	SCTP_DISPOSITION_DISCARD,	 /* No further processing.  */	SCTP_DISPOSITION_CONSUME,	 /* Process return values normally.  */	SCTP_DISPOSITION_NOMEM,		 /* We ran out of memory--recover.  */	SCTP_DISPOSITION_DELETE_TCB,	 /* Close the association.  */	SCTP_DISPOSITION_ABORT,		 /* Close the association NOW.  */	SCTP_DISPOSITION_VIOLATION,	 /* The peer is misbehaving.  */	SCTP_DISPOSITION_NOT_IMPL,	 /* This entry is not implemented.  */	SCTP_DISPOSITION_ERROR,		 /* This is plain old user error.  */	SCTP_DISPOSITION_BUG,		 /* This is a bug.  */} sctp_disposition_t;typedef struct {	int name;	int action;} sctp_sm_command_t;typedef sctp_disposition_t (sctp_state_fn_t) (const struct sctp_endpoint *,					      const struct sctp_association *,					      const sctp_subtype_t type,					      void *arg,					      sctp_cmd_seq_t *);typedef void (sctp_timer_event_t) (unsigned long);typedef struct {	sctp_state_fn_t *fn;	const char *name;} sctp_sm_table_entry_t;/* A naming convention of "sctp_sf_xxx" applies to all the state functions * currently in use. *//* Prototypes for generic state functions. */sctp_state_fn_t sctp_sf_not_impl;sctp_state_fn_t sctp_sf_bug;/* Prototypes for gener timer state functions. */sctp_state_fn_t sctp_sf_timer_ignore;/* Prototypes for chunk state functions. */sctp_state_fn_t sctp_sf_do_9_1_abort;sctp_state_fn_t sctp_sf_cookie_wait_abort;sctp_state_fn_t sctp_sf_cookie_echoed_abort;sctp_state_fn_t sctp_sf_shutdown_pending_abort;sctp_state_fn_t sctp_sf_shutdown_sent_abort;sctp_state_fn_t sctp_sf_shutdown_ack_sent_abort;sctp_state_fn_t sctp_sf_do_5_1B_init;sctp_state_fn_t sctp_sf_do_5_1C_ack;sctp_state_fn_t sctp_sf_do_5_1D_ce;sctp_state_fn_t sctp_sf_do_5_1E_ca;sctp_state_fn_t sctp_sf_do_4_C;sctp_state_fn_t sctp_sf_eat_data_6_2;sctp_state_fn_t sctp_sf_eat_data_fast_4_4;sctp_state_fn_t sctp_sf_eat_sack_6_2;sctp_state_fn_t sctp_sf_tabort_8_4_8;sctp_state_fn_t sctp_sf_operr_notify;sctp_state_fn_t sctp_sf_t1_init_timer_expire;sctp_state_fn_t sctp_sf_t1_cookie_timer_expire;sctp_state_fn_t sctp_sf_t2_timer_expire;sctp_state_fn_t sctp_sf_t4_timer_expire;sctp_state_fn_t sctp_sf_t5_timer_expire;sctp_state_fn_t sctp_sf_sendbeat_8_3;sctp_state_fn_t sctp_sf_beat_8_3;sctp_state_fn_t sctp_sf_backbeat_8_3;sctp_state_fn_t sctp_sf_do_9_2_final;sctp_state_fn_t sctp_sf_do_9_2_shutdown;sctp_state_fn_t sctp_sf_do_ecn_cwr;sctp_state_fn_t sctp_sf_do_ecne;sctp_state_fn_t sctp_sf_ootb;sctp_state_fn_t sctp_sf_pdiscard;sctp_state_fn_t sctp_sf_violation;sctp_state_fn_t sctp_sf_discard_chunk;sctp_state_fn_t sctp_sf_do_5_2_1_siminit;sctp_state_fn_t sctp_sf_do_5_2_2_dupinit;sctp_state_fn_t sctp_sf_do_5_2_4_dupcook;sctp_state_fn_t sctp_sf_unk_chunk;sctp_state_fn_t sctp_sf_do_8_5_1_E_sa;sctp_state_fn_t sctp_sf_cookie_echoed_err;sctp_state_fn_t sctp_sf_do_asconf;sctp_state_fn_t sctp_sf_do_asconf_ack;sctp_state_fn_t sctp_sf_do_9_2_reshutack;sctp_state_fn_t sctp_sf_eat_fwd_tsn;sctp_state_fn_t sctp_sf_eat_fwd_tsn_fast;/* Prototypes for primitive event state functions.  */sctp_state_fn_t sctp_sf_do_prm_asoc;sctp_state_fn_t sctp_sf_do_prm_send;sctp_state_fn_t sctp_sf_do_9_2_prm_shutdown;sctp_state_fn_t sctp_sf_cookie_wait_prm_shutdown;sctp_state_fn_t sctp_sf_cookie_echoed_prm_shutdown;sctp_state_fn_t sctp_sf_do_9_1_prm_abort;sctp_state_fn_t sctp_sf_cookie_wait_prm_abort;sctp_state_fn_t sctp_sf_cookie_echoed_prm_abort;sctp_state_fn_t sctp_sf_shutdown_pending_prm_abort;sctp_state_fn_t sctp_sf_shutdown_sent_prm_abort;sctp_state_fn_t sctp_sf_shutdown_ack_sent_prm_abort;sctp_state_fn_t sctp_sf_error_closed;sctp_state_fn_t sctp_sf_error_shutdown;sctp_state_fn_t sctp_sf_ignore_primitive;sctp_state_fn_t sctp_sf_do_prm_requestheartbeat;sctp_state_fn_t sctp_sf_do_prm_asconf;/* Prototypes for other event state functions.  */sctp_state_fn_t sctp_sf_do_9_2_start_shutdown;sctp_state_fn_t sctp_sf_do_9_2_shutdown_ack;sctp_state_fn_t sctp_sf_ignore_other;sctp_state_fn_t sctp_sf_cookie_wait_icmp_abort;/* Prototypes for timeout event state functions.  */sctp_state_fn_t sctp_sf_do_6_3_3_rtx;sctp_state_fn_t sctp_sf_do_6_2_sack;sctp_state_fn_t sctp_sf_autoclose_timer_expire;/* Prototypes for utility support functions.  */__u8 sctp_get_chunk_type(struct sctp_chunk *chunk);const sctp_sm_table_entry_t *sctp_sm_lookup_event(sctp_event_t,					    sctp_state_t,					    sctp_subtype_t);int sctp_chunk_iif(const struct sctp_chunk *);struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *,					     struct sctp_chunk *,					     gfp_t gfp);__u32 sctp_generate_verification_tag(void);void sctp_populate_tie_tags(__u8 *cookie, __u32 curTag, __u32 hisTag);/* Prototypes for chunk-building functions.  */struct sctp_chunk *sctp_make_init(const struct sctp_association *,			     const struct sctp_bind_addr *,			     gfp_t gfp, int vparam_len);struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *,				 const struct sctp_chunk *,				 const gfp_t gfp,				 const int unkparam_len);struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *,				    const struct sctp_chunk *);struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *,				   const struct sctp_chunk *);struct sctp_chunk *sctp_make_cwr(const struct sctp_association *,				 const __u32 lowest_tsn,				 const struct sctp_chunk *);struct sctp_chunk * sctp_make_datafrag_empty(struct sctp_association *,					const struct sctp_sndrcvinfo *sinfo,					int len, const __u8 flags,					__u16 ssn);struct sctp_chunk *sctp_make_ecne(const struct sctp_association *,				  const __u32);struct sctp_chunk *sctp_make_sack(const struct sctp_association *);struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,				      const struct sctp_chunk *chunk);struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,					  const struct sctp_chunk *);struct sctp_chunk *sctp_make_shutdown_complete(const struct sctp_association *,					  const struct sctp_chunk *);void sctp_init_cause(struct sctp_chunk *, __u16 cause, const void *, size_t);struct sctp_chunk *sctp_make_abort(const struct sctp_association *,			      const struct sctp_chunk *,			      const size_t hint);struct sctp_chunk *sctp_make_abort_no_data(const struct sctp_association *,				      const struct sctp_chunk *,				      __u32 tsn);struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *,				   const struct sctp_chunk *,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -