2 .\" Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH DLPI_ENABMULTI 3DLPI "Aug 22, 2007"
8 dlpi_enabmulti, dlpi_disabmulti \- enable or disable DLPI multicast messages
13 \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-ldlpi\fR [ \fIlibrary\fR... ]
16 \fBint\fR \fBdlpi_enabmulti\fR(\fBdlpi_handle_t\fR \fIdh\fR, \fBconst void *\fR\fIaddrp\fR,
17 \fBsize_t\fR \fIaddrlen\fR);
22 \fBint\fR \fBdlpi_disabmulti\fR(\fBdlpi_handle_t\fR \fIdh\fR, \fBconst void *\fR\fIaddrp\fR,
23 \fBsize_t\fR \fIaddrlen\fR);
29 The \fBdlpi_enabmulti()\fR function enables reception of messages destined to
30 the multicast address pointed to by \fIaddrp\fR on the \fBDLPI\fR link instance
31 associated with \fBDLPI\fR handle \fIdh\fR. The \fBDLPI\fR link instance will
32 pass up only those messages destined for enabled multicast addresses. This
33 operation can be performed in any \fBDLPI\fR state of a handle.
36 The \fBdlpi_disabmulti()\fR function disables a specified multicast address
37 pointed to by \fIaddrp\fR on the \fBDLPI\fR link instance associated with
38 \fBDLPI\fR handle \fIdh\fR. This operation can be performed in any \fBDLPI\fR
43 Upon success, \fBDLPI_SUCCESS\fR is returned. If \fBDL_SYSERR\fR is returned,
44 \fBerrno\fR contains the specific UNIX system error value. Otherwise, a
45 \fBDLPI\fR error value defined in \fB<sys/dlpi.h>\fR or \fBDLPI_EINHANDLE\fR is
51 \fB\fBDLPI_EBADMSG\fR\fR
60 \fB\fBDLPI_EINHANDLE\fR\fR
63 Invalid \fBDLPI\fR handle
69 \fB\fBDLPI_EINVAL\fR\fR
78 \fB\fBDLPI_ETIMEDOUT\fR\fR
81 \fBDLPI\fR operation timed out
87 See \fBattributes\fR(5) for description of the following attributes:
95 ATTRIBUTE TYPE ATTRIBUTE VALUE
97 Interface Stability Committed
105 \fBlibdlpi\fR(3LIB), \fBattributes\fR(5)