/* AFS Cache Manager definitions1*2* Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public License7* as published by the Free Software Foundation; either version8* 2 of the License, or (at your option) any later version.9*/1011#ifndef AFS_CM_H12#define AFS_CM_H1314#define AFS_CM_PORT 7001 /* AFS file server port */15#define CM_SERVICE 1 /* AFS File Service ID */1617enum AFS_CM_Operations {18CBCallBack = 204, /* break callback promises */19CBInitCallBackState = 205, /* initialise callback state */20CBProbe = 206, /* probe client */21CBGetLock = 207, /* get contents of CM lock table */22CBGetCE = 208, /* get cache file description */23CBGetXStatsVersion = 209, /* get version of extended statistics */24CBGetXStats = 210, /* get contents of extended statistics data */25CBInitCallBackState3 = 213, /* initialise callback state, version 3 */26CBProbeUuid = 214, /* check the client hasn't rebooted */27CBTellMeAboutYourself = 65538, /* get client capabilities */28};2930#define AFS_CAP_ERROR_TRANSLATION 0x13132#endif /* AFS_FS_H */333435