1249592Sken/*-
2249592Sken * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
3249592Sken * Copyright (c) 2013 Spectra Logic Corporation
4249592Sken *
5249592Sken *
6249592Sken * Redistribution and use in source and binary forms, with or without
7249592Sken * modification, are permitted provided that the following conditions
8249592Sken * are met:
9249592Sken * 1. Redistributions of source code must retain the above copyright
10249592Sken *    notice, this list of conditions and the following disclaimer.
11249592Sken * 2. Redistributions in binary form must reproduce the above copyright
12249592Sken *    notice, this list of conditions and the following disclaimer in the
13249592Sken *    documentation and/or other materials provided with the distribution.
14249592Sken *
15249592Sken * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16249592Sken * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17249592Sken * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18249592Sken * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19249592Sken * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20249592Sken * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21249592Sken * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22249592Sken * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23249592Sken * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24249592Sken * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25249592Sken * SUCH DAMAGE.
26249592Sken */
27249592Sken/* $FreeBSD$ */
28249592Sken
29249592Sken#ifndef	_NFS_FHA_NEW_H
30249592Sken#define	_NFS_FHA_NEW_H 1
31249592Sken
32249592Sken#ifdef	_KERNEL
33249592Sken
34249592Sken#define	FHANEW_SERVER_NAME	"nfsd"
35249592Sken
36249592SkenSVCTHREAD *fhanew_assign(SVCTHREAD *this_thread, struct svc_req *req);
37249592Sken#endif /* _KERNEL */
38249592Sken
39249592Sken#endif /* _NFS_FHA_NEW_H */
40