1 /* ccapi/server/ccs_common.h */ 2 /* 3 * Copyright 2006 Massachusetts Institute of Technology. 4 * All Rights Reserved. 5 * 6 * Export of this software from the United States of America may 7 * require a specific license from the United States Government. 8 * It is the responsibility of any person or organization contemplating 9 * export to obtain such a license before exporting. 10 * 11 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 12 * distribute this software and its documentation for any purpose and 13 * without fee is hereby granted, provided that the above copyright 14 * notice appear in all copies and that both that copyright notice and 15 * this permission notice appear in supporting documentation, and that 16 * the name of M.I.T. not be used in advertising or publicity pertaining 17 * to distribution of the software without specific, written prior 18 * permission. Furthermore if you modify this software you must label 19 * your software as modified software and not distribute it in such a 20 * fashion that it might be confused with the original M.I.T. software. 21 * M.I.T. makes no representations about the suitability of 22 * this software for any purpose. It is provided "as is" without express 23 * or implied warranty. 24 */ 25 26 #ifndef CCS_COMMON_H 27 #define CCS_COMMON_H 28 29 #include "cci_common.h" 30 31 #include <time.h> 32 33 #include "ccs_array.h" 34 #include "ccs_list.h" 35 #include "ccs_cache_collection.h" 36 #include "ccs_ccache_iterator.h" 37 #include "ccs_ccache.h" 38 #include "ccs_credentials_iterator.h" 39 #include "ccs_credentials.h" 40 #include "ccs_lock.h" 41 #include "ccs_lock_state.h" 42 #include "ccs_pipe.h" 43 #include "ccs_client.h" 44 #include "ccs_callback.h" 45 #include "ccs_server.h" 46 47 #endif /* CCS_COMMON_H */ 48