/* * 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 * 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] * * CDDL HEADER END */ /* * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _SMBD_H #define _SMBD_H #pragma ident "%Z%%M% %I% %E% SMI" #ifdef __cplusplus extern "C" { #endif #include #include #include #include extern int smb_winpipe_doorsvc_start(void); extern void smb_winpipe_doorsvc_stop(void); extern int smb_share_dsrv_start(void); extern void smb_share_dsrv_stop(void); extern int smb_netlogon_init(void); extern void smb_set_netlogon_cred(void); extern smb_token_t *smbd_user_auth_logon(netr_client_t *); extern void smbd_user_nonauth_logon(uint32_t); extern void smbd_user_auth_logoff(uint32_t); extern uint32_t smbd_join(smb_joininfo_t *); typedef struct smbd { const char *s_version; /* smbd version string */ const char *s_pname; /* basename to use for messages */ pid_t s_pid; /* process-ID of current daemon */ uid_t s_uid; /* UID of current daemon */ gid_t s_gid; /* GID of current daemon */ int s_fg; /* Run in foreground */ int s_drv_fd; /* Handle for SMB kernel driver */ int s_shutdown_flag; /* Fields for shutdown control */ int s_sigval; boolean_t s_kbound; /* B_TRUE if bound to kernel */ int s_door_lmshr; int s_door_srv; int s_door_winpipe; int s_secmode; /* Current security mode */ smb_kmod_cfg_t s_kcfg; /* Current Kernel configuration */ } smbd_t; #ifdef __cplusplus } #endif #endif /* _SMBD_H */