1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. 23 */ 24 25 #ifndef _INET_SCTP_SCTP_ASCONF_H 26 #define _INET_SCTP_SCTP_ASCONF_H 27 28 #ifdef __cplusplus 29 extern "C" { 30 #endif 31 32 #define SCTP_FADDR_RC_TIMER_RESTART(sctp, fp, intvl) \ 33 if ((fp)->sf_rc_timer_mp == NULL) { \ 34 (fp)->sf_rc_timer_mp = sctp_timer_alloc((sctp), \ 35 sctp_rc_timer, KM_NOSLEEP); \ 36 } \ 37 if ((fp)->sf_rc_timer_mp != NULL) { \ 38 ((sctpt_t *)((fp)->sf_rc_timer_mp->b_rptr))->sctpt_faddr = fp;\ 39 dprint(3, ("faddr_rc_timer_restart: fp=%p %x:%x:%x:%x %d\n", \ 40 (void *)(fp), SCTP_PRINTADDR((fp)->sf_faddr), \ 41 (int)(intvl))); \ 42 sctp_timer((sctp), (fp)->sf_rc_timer_mp, (intvl)); \ 43 (fp)->sf_rc_timer_running = 1; \ 44 } 45 46 #define SCTP_FADDR_RC_TIMER_STOP(fp) \ 47 if ((fp)->sf_rc_timer_running && (fp)->sf_rc_timer_mp != NULL) { \ 48 sctp_timer_stop((fp)->sf_rc_timer_mp); \ 49 (fp)->sf_rc_timer_running = 0; \ 50 } 51 52 extern int sctp_add_ip(sctp_t *, const void *, uint32_t); 53 extern int sctp_del_ip(sctp_t *, const void *, uint32_t, uchar_t *, size_t); 54 extern void sctp_asconf_free_cxmit(sctp_t *, sctp_chunk_hdr_t *); 55 extern void sctp_input_asconf(sctp_t *, sctp_chunk_hdr_t *, sctp_faddr_t *); 56 extern void sctp_input_asconf_ack(sctp_t *, sctp_chunk_hdr_t *, sctp_faddr_t *); 57 extern int sctp_set_peerprim(sctp_t *, const void *); 58 extern void sctp_wput_asconf(sctp_t *, sctp_faddr_t *); 59 60 #ifdef __cplusplus 61 } 62 #endif 63 64 #endif /* _INET_SCTP_SCTP_ASCONF_H */ 65