David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 1 | /* AFS Cache Manager definitions |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #ifndef AFS_CM_H |
| 13 | #define AFS_CM_H |
| 14 | |
| 15 | #define AFS_CM_PORT 7001 /* AFS file server port */ |
| 16 | #define CM_SERVICE 1 /* AFS File Service ID */ |
| 17 | |
| 18 | enum AFS_CM_Operations { |
| 19 | CBCallBack = 204, /* break callback promises */ |
| 20 | CBInitCallBackState = 205, /* initialise callback state */ |
| 21 | CBProbe = 206, /* probe client */ |
| 22 | CBGetLock = 207, /* get contents of CM lock table */ |
| 23 | CBGetCE = 208, /* get cache file description */ |
| 24 | CBGetXStatsVersion = 209, /* get version of extended statistics */ |
| 25 | CBGetXStats = 210, /* get contents of extended statistics data */ |
David Howells | c35eccb | 2007-04-26 15:58:49 -0700 | [diff] [blame] | 26 | CBInitCallBackState3 = 213, /* initialise callback state, version 3 */ |
David Howells | 9396d49 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 27 | CBProbeUuid = 214, /* check the client hasn't rebooted */ |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 28 | CBTellMeAboutYourself = 65538, /* get client capabilities */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 29 | }; |
| 30 | |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 31 | #define AFS_CAP_ERROR_TRANSLATION 0x1 |
| 32 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 33 | #endif /* AFS_FS_H */ |