diff options
author | Yuri Pankov <yuri.pankov@nexenta.com> | 2011-10-03 04:36:40 -0700 |
---|---|---|
committer | Yuri Pankov <yuri.pankov@nexenta.com> | 2011-10-03 04:36:40 -0700 |
commit | ed22c7109fc5dd9e1b7a5d0333bdc7ad2718e2ab (patch) | |
tree | 3b2f488c4a03bda877119449bd63c01fa32aa6f2 /usr/src/man/man3commputil | |
parent | af8dc4373b25cce2c0bbb80f24e791f99eccbb6f (diff) | |
download | illumos-joyent-ed22c7109fc5dd9e1b7a5d0333bdc7ad2718e2ab.tar.gz |
1502 Remove conversion cruft from manpages
Reviewed by: Alexander Eremin <alexander.eremin@nexenta.com>
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Garrett D'Amore <garrett.damore@gmail.com>
Diffstat (limited to 'usr/src/man/man3commputil')
10 files changed, 95 insertions, 123 deletions
diff --git a/usr/src/man/man3commputil/sdp_add_origin.3commputil b/usr/src/man/man3commputil/sdp_add_origin.3commputil index d9d9b591db..9083c5bb31 100644 --- a/usr/src/man/man3commputil/sdp_add_origin.3commputil +++ b/usr/src/man/man3commputil/sdp_add_origin.3commputil @@ -4,7 +4,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_add_origin 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_ADD_ORIGIN 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_add_origin, sdp_add_name, sdp_add_information, sdp_add_uri, sdp_add_email, sdp_add_phone, sdp_add_connection, sdp_add_bandwidth, sdp_add_repeat, @@ -206,23 +206,19 @@ error. These functions will fail if: .sp .ne 2 -.mk .na \fB\fBEINVAL\fR\fR .ad .RS 10n -.rt Mandatory parameters are not provided (they are null). .RE .sp .ne 2 -.mk .na \fB\fBENOMEM\fR\fR .ad .RS 10n -.rt The allocation of memory failed. .RE @@ -285,13 +281,13 @@ int main () my_sess->version = 0; if (sdp_add_name(my_sess, "-") != 0) goto err_ret; - if (sdp_add_origin(my_sess, "Alice", 2890844526ULL, 2890842807ULL, + if (sdp_add_origin(my_sess, "Alice", 2890844526ULL, 2890842807ULL, "IN", "IP4", "10.47.16.5") != 0) goto err_ret; if (sdp_add_information(&my_sess->s_info, "A Seminar on the session" "description protocol") != 0) goto err_ret; - if (sdp_add_uri (my_sess, "http://www.example.com/seminars/sdp.pdf") + if (sdp_add_uri (my_sess, "http://www.example.com/seminars/sdp.pdf") != 0) goto err_ret; if (sdp_add_email(my_sess, "alice@example.com (Alice smith)") != 0) @@ -328,10 +324,10 @@ int main () goto err_ret; if (sdp_add_information(&my_media->m_info, "video media") != 0) goto err_ret; - if (sdp_add_attribute(&my_media->m_attr, "rtpmap", + if (sdp_add_attribute(&my_media->m_attr, "rtpmap", "99 h232-199/90000") != 0) goto err_ret; - if (sdp_add_attribute(&my_media->m_attr, "rtpmap", + if (sdp_add_attribute(&my_media->m_attr, "rtpmap", "90 h263-1998/90000") != 0) goto err_ret; b_sdp = sdp_session_to_str(my_sess, &error); @@ -346,7 +342,7 @@ int main () err_ret: free(b_sdp); sdp_free_session(my_sess); - return (1); + return (1); } .fi .in -2 @@ -359,15 +355,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_clone_session.3commputil b/usr/src/man/man3commputil/sdp_clone_session.3commputil index 466a5f008b..6e9c08fd1f 100644 --- a/usr/src/man/man3commputil/sdp_clone_session.3commputil +++ b/usr/src/man/man3commputil/sdp_clone_session.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_clone_session 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_CLONE_SESSION 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_clone_session \- clone an SDP session structure .SH SYNOPSIS @@ -36,15 +36,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_delete_all_field.3commputil b/usr/src/man/man3commputil/sdp_delete_all_field.3commputil index de4efa653f..9e95421109 100644 --- a/usr/src/man/man3commputil/sdp_delete_all_field.3commputil +++ b/usr/src/man/man3commputil/sdp_delete_all_field.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_delete_all_field 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_DELETE_ALL_FIELD 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_delete_all_field, sdp_delete_all_media_field \- delete all SDP fields .SH SYNOPSIS @@ -49,12 +49,10 @@ these calls in the event of an error. These functions will fail if: .sp .ne 2 -.mk .na \fB\fBEINVAL\fR\fR .ad .RS 10n -.rt The \fIsession\fR or \fImedia\fR argument is \fINULL\fR or the field type is unknown. .RE @@ -67,15 +65,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_delete_media.3commputil b/usr/src/man/man3commputil/sdp_delete_media.3commputil index d93504d1f5..4f26f3bd1d 100644 --- a/usr/src/man/man3commputil/sdp_delete_media.3commputil +++ b/usr/src/man/man3commputil/sdp_delete_media.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_delete_media 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_DELETE_MEDIA 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_delete_media, sdp_delete_attribute \- delete the specified media or attribute from the appropriate list @@ -51,12 +51,10 @@ these calls in the event of an error. These functions will fail if: .sp .ne 2 -.mk .na \fB\fBEINVAL\fR\fR .ad .RS 10n -.rt The mandatory input parameters are not provided or are \fINULL\fR. .RE @@ -68,15 +66,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_find_attribute.3commputil b/usr/src/man/man3commputil/sdp_find_attribute.3commputil index 781cdf054b..482051079a 100644 --- a/usr/src/man/man3commputil/sdp_find_attribute.3commputil +++ b/usr/src/man/man3commputil/sdp_find_attribute.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_find_attribute 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_FIND_ATTRIBUTE 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_find_attribute \- find the attribute from the attribute list .SH SYNOPSIS @@ -52,7 +52,7 @@ sdp_media_t *media = session->s_media; if ((ptime = sdp_find_attribute(media->m_attr, "ptime")) == NULL) /* ptime attribute not present */ -else if((max_ptime = sdp_find_attribute(media->m_attr, +else if((max_ptime = sdp_find_attribute(media->m_attr, "maxptime")) == NULL) /* max_ptime attribute not present */ .fi @@ -66,15 +66,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_find_media.3commputil b/usr/src/man/man3commputil/sdp_find_media.3commputil index 3bff9e19b8..06a0df3ce0 100644 --- a/usr/src/man/man3commputil/sdp_find_media.3commputil +++ b/usr/src/man/man3commputil/sdp_find_media.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_find_media 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_FIND_MEDIA 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_find_media \- find the specified media from the media list .SH SYNOPSIS @@ -64,15 +64,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_find_media_rtpmap.3commputil b/usr/src/man/man3commputil/sdp_find_media_rtpmap.3commputil index 58f2f0f784..86db8e07c1 100644 --- a/usr/src/man/man3commputil/sdp_find_media_rtpmap.3commputil +++ b/usr/src/man/man3commputil/sdp_find_media_rtpmap.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_find_media_rtpmap 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_FIND_MEDIA_RTPMAP 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_find_media_rtpmap \- find the rtpmap attribute in the specified media .SH SYNOPSIS @@ -69,15 +69,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_new_session.3commputil b/usr/src/man/man3commputil/sdp_new_session.3commputil index c5c79a1440..b0ee40a7e9 100644 --- a/usr/src/man/man3commputil/sdp_new_session.3commputil +++ b/usr/src/man/man3commputil/sdp_new_session.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_new_session 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_NEW_SESSION 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_new_session, sdp_free_session \- allocate a new SDP session structure .SH SYNOPSIS @@ -45,15 +45,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_parse.3commputil b/usr/src/man/man3commputil/sdp_parse.3commputil index 146f0b71b3..e6cdbb0b4c 100644 --- a/usr/src/man/man3commputil/sdp_parse.3commputil +++ b/usr/src/man/man3commputil/sdp_parse.3commputil @@ -4,7 +4,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_parse 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_PARSE 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_parse \- parse the SDP description .SH SYNOPSIS @@ -38,27 +38,25 @@ cannot be \fINULL\fR and can take any of the following values: .sp .TS -tab(); -lw(2.75i) lw(2.75i) -lw(2.75i) lw(2.75i) -. -\fBSDP_VERSION_ERROR\fR0x00000001 -\fBSDP_ORIGIN_ERROR\fR0x00000002 -\fBSDP_NAME_ERROR\fR0x00000004 -\fBSDP_INFO_ERROR\fR0x00000008 -\fBSDP_URI_ERROR\fR0x00000010 -\fBSDP_EMAIL_ERROR\fR0x00000020 -\fBSDP_PHONE_ERROR\fR0x00000040 -\fBSDP_CONNECTION_ERROR\fR0x00000080 -\fBSDP_BANDWIDTH_ERROR\fR0x00000100 -\fBSDP_TIME_ERROR\fR0x00000200 -\fBSDP_REPEAT_TIME_ERROR\fR0x00000400 -\fBSDP_ZONE_ERROR\fR0x00000800 -\fBSDP_KEY_ERROR\fR0x00001000 -\fBSDP_ATTRIBUTE_ERROR\fR0x00002000 -\fBSDP_MEDIA_ERROR\fR0x00004000 -\fBSDP_FIELDS_ORDER_ERROR\fR0x00008000 -\fBSDP_MISSING_FIELDS\fR0x00010000 +l l +l l . +\fBSDP_VERSION_ERROR\fR 0x00000001 +\fBSDP_ORIGIN_ERROR\fR 0x00000002 +\fBSDP_NAME_ERROR\fR 0x00000004 +\fBSDP_INFO_ERROR\fR 0x00000008 +\fBSDP_URI_ERROR\fR 0x00000010 +\fBSDP_EMAIL_ERROR\fR 0x00000020 +\fBSDP_PHONE_ERROR\fR 0x00000040 +\fBSDP_CONNECTION_ERROR\fR 0x00000080 +\fBSDP_BANDWIDTH_ERROR\fR 0x00000100 +\fBSDP_TIME_ERROR\fR 0x00000200 +\fBSDP_REPEAT_TIME_ERROR\fR 0x00000400 +\fBSDP_ZONE_ERROR\fR 0x00000800 +\fBSDP_KEY_ERROR\fR 0x00001000 +\fBSDP_ATTRIBUTE_ERROR\fR 0x00002000 +\fBSDP_MEDIA_ERROR\fR 0x00004000 +\fBSDP_FIELDS_ORDER_ERROR\fR 0x00008000 +\fBSDP_MISSING_FIELDS\fR 0x00010000 .TE .sp @@ -316,23 +314,19 @@ event of an error. The \fBsdp_parse()\fR function will fail if: .sp .ne 2 -.mk .na \fB\fBEINVAL\fR\fR .ad .RS 10n -.rt Arguments to the function were invalid. .RE .sp .ne 2 -.mk .na \fB\fBENOMEM\fR\fR .ad .RS 10n -.rt Memory allocation failed while parsing \fIsdp_info\fR. .RE @@ -414,15 +408,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO diff --git a/usr/src/man/man3commputil/sdp_session_to_str.3commputil b/usr/src/man/man3commputil/sdp_session_to_str.3commputil index 2da6ec2d4b..0b704a9605 100644 --- a/usr/src/man/man3commputil/sdp_session_to_str.3commputil +++ b/usr/src/man/man3commputil/sdp_session_to_str.3commputil @@ -3,7 +3,7 @@ .\" 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. .\" 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. .\" 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] -.TH sdp_session_to_str 3COMMPUTIL "12 Oct 2007" "SunOS 5.11" "Communication Protocol Parser Utilities Library Functions" +.TH SDP_SESSION_TO_STR 3COMMPUTIL "Oct 12, 2007" .SH NAME sdp_session_to_str \- return a string representation of a session structure .SH SYNOPSIS @@ -42,23 +42,19 @@ by these calls in the event of an error. The \fBsdp_session_to_str()\fR function will fail if: .sp .ne 2 -.mk .na \fB\fBEINVAL\fR\fR .ad .RS 10n -.rt The input is null. .RE .sp .ne 2 -.mk .na \fB\fBENOMEM\fR\fR .ad .RS 10n -.rt A memory allocation failure occurred. .RE @@ -70,15 +66,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityCommitted +Interface Stability Committed _ -MT-LevelSafe +MT-Level Safe .TE .SH SEE ALSO |