xref: /haiku/src/add-ons/kernel/file_systems/nfs4/idmapper/IdMapper.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2012 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Paweł Dziepak, pdziepak@quarnos.org
7  */
8 #ifndef IDMAPPER_H
9 #define IDMAPPER_H
10 
11 
12 enum MsgCode {
13 	MsgError,
14 	MsgReply,
15 	MsgNameToUID,
16 	MsgUIDToName,
17 	MsgNameToGID,
18 	MsgGIDToName
19 };
20 
21 static const char*	kRequestPortName	= "nfs4idmap_request";
22 static const char*	kReplyPortName		= "nfs4idmap_reply";
23 
24 
25 #endif	// IDMAPPER_H
26 
27