diff options
Diffstat (limited to 'usr/src/lib/libshare/common/libshare.c')
-rw-r--r-- | usr/src/lib/libshare/common/libshare.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/usr/src/lib/libshare/common/libshare.c b/usr/src/lib/libshare/common/libshare.c index 5a58e0268e..a507e8a1a5 100644 --- a/usr/src/lib/libshare/common/libshare.c +++ b/usr/src/lib/libshare/common/libshare.c @@ -21,7 +21,7 @@ /* * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright 2014 Nexenta Systems, Inc. All rights reserved. + * Copyright 2018 Nexenta Systems, Inc. All rights reserved. * Copyright (c) 2016 by Delphix. All rights reserved. */ @@ -1153,6 +1153,20 @@ sa_fini(sa_handle_t handle) } /* + * sa_service(sa_handle_t handle) + * + * Returns the service for which the handle is currently initialized. + */ +int +sa_service(sa_handle_t handle) +{ + if (handle == NULL) + return (0); + + return (((sa_handle_impl_t)handle)->sa_service); +} + +/* * sa_get_protocols(char **protocol) * Get array of protocols that are supported * Returns pointer to an allocated and NULL terminated |