2011-07-02 23:34:05 +04:00
|
|
|
/*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* 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
|
2022-07-12 00:16:13 +03:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2011-07-02 23:34:05 +04:00
|
|
|
* 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]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
* Copyright (c) 2011 Gunnar Beutner
|
|
|
|
*/
|
|
|
|
|
2021-04-11 20:42:07 +03:00
|
|
|
#include "libshare_impl.h"
|
|
|
|
|
2021-04-11 20:37:48 +03:00
|
|
|
#define FILE_HEADER "# !!! DO NOT EDIT THIS FILE MANUALLY !!!\n\n"
|
|
|
|
|
2022-02-28 22:42:22 +03:00
|
|
|
int nfs_escape_mountpoint(const char *mp, char **out, boolean_t *need_free);
|
2021-05-17 21:25:29 +03:00
|
|
|
boolean_t nfs_is_shared_impl(const char *exports, sa_share_impl_t impl_share);
|
2021-04-16 01:40:22 +03:00
|
|
|
int nfs_toggle_share(const char *lockfile, const char *exports,
|
|
|
|
const char *expdir, sa_share_impl_t impl_share,
|
2021-05-17 19:13:18 +03:00
|
|
|
int(*cbk)(sa_share_impl_t impl_share, FILE *tmpfile));
|