| 
									
										
										
										
											2008-01-11 09:57:09 -05:00
										 |  |  | /* SCTP kernel implementation
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * (C) Copyright IBM Corp. 2001, 2004 | 
					
						
							|  |  |  |  * Copyright (c) 1999-2000 Cisco, Inc. | 
					
						
							|  |  |  |  * Copyright (c) 1999-2001 Motorola, Inc. | 
					
						
							|  |  |  |  * Copyright (c) 2001 Intel Corp. | 
					
						
							|  |  |  |  * Copyright (c) 2001 Nokia, Inc. | 
					
						
							|  |  |  |  * Copyright (c) 2001 La Monte H.P. Yarroll | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * These are the definitions needed for the sctp_ulpq type.  The | 
					
						
							|  |  |  |  * sctp_ulpq is the interface between the Upper Layer Protocol, or ULP, | 
					
						
							|  |  |  |  * and the core SCTP state machine.  This is the component which handles | 
					
						
							|  |  |  |  * reassembly and ordering. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-01-11 09:57:09 -05:00
										 |  |  |  * This SCTP implementation is free software; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-01-11 09:57:09 -05:00
										 |  |  |  * This SCTP implementation  is distributed in the hope that it | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * 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: | 
					
						
							|  |  |  |  *   Jon Grimm             <jgrimm@us.ibm.com> | 
					
						
							|  |  |  |  *   La Monte H.P. Yarroll <piggy@acm.org> | 
					
						
							|  |  |  |  *   Sridhar Samudrala     <sri@us.ibm.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Any bugs reported given to us we will try to fix... any fixes shared will | 
					
						
							|  |  |  |  * be incorporated into the next SCTP release. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __sctp_ulpqueue_h__
 | 
					
						
							|  |  |  | #define __sctp_ulpqueue_h__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* A structure to carry information to the ULP (e.g. Sockets API) */ | 
					
						
							|  |  |  | struct sctp_ulpq { | 
					
						
							|  |  |  | 	char malloced; | 
					
						
							|  |  |  | 	char pd_mode; | 
					
						
							|  |  |  | 	struct sctp_association *asoc; | 
					
						
							|  |  |  | 	struct sk_buff_head reasm; | 
					
						
							|  |  |  | 	struct sk_buff_head lobby; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Prototypes. */ | 
					
						
							|  |  |  | struct sctp_ulpq *sctp_ulpq_init(struct sctp_ulpq *, | 
					
						
							|  |  |  | 				 struct sctp_association *); | 
					
						
							| 
									
										
										
										
											2007-03-19 17:01:17 -07:00
										 |  |  | void sctp_ulpq_flush(struct sctp_ulpq *ulpq); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | void sctp_ulpq_free(struct sctp_ulpq *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Add a new DATA chunk for processing. */ | 
					
						
							| 
									
										
										
										
											2005-10-07 07:46:04 +01:00
										 |  |  | int sctp_ulpq_tail_data(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Add a new event for propagation to the ULP. */ | 
					
						
							|  |  |  | int sctp_ulpq_tail_event(struct sctp_ulpq *, struct sctp_ulpevent *ev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Renege previously received chunks.  */ | 
					
						
							| 
									
										
										
										
											2005-10-07 07:46:04 +01:00
										 |  |  | void sctp_ulpq_renege(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Perform partial delivery. */ | 
					
						
							| 
									
										
										
										
											2005-10-07 07:46:04 +01:00
										 |  |  | void sctp_ulpq_partial_delivery(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Abort the partial delivery. */ | 
					
						
							| 
									
										
										
										
											2005-10-07 07:46:04 +01:00
										 |  |  | void sctp_ulpq_abort_pd(struct sctp_ulpq *, gfp_t); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Clear the partial data delivery condition on this socket. */ | 
					
						
							| 
									
										
										
										
											2007-04-20 12:23:15 -07:00
										 |  |  | int sctp_clear_pd(struct sock *sk, struct sctp_association *asoc); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Skip over an SSN. */ | 
					
						
							|  |  |  | void sctp_ulpq_skip(struct sctp_ulpq *ulpq, __u16 sid, __u16 ssn); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-13 17:01:19 -04:00
										 |  |  | void sctp_ulpq_reasm_flushtsn(struct sctp_ulpq *, __u32); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif /* __sctp_ulpqueue_h__ */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |