Coda Distributed File System
deprecations.h
Go to the documentation of this file.
1/* BLURB lgpl
2
3 Coda File System
4 Release 6
5
6 Copyright (c) 2016 Carnegie Mellon University
7 Additional copyrights listed below
8
9This code is distributed "AS IS" without warranty of any kind under
10the terms of the GNU Library General Public Licence Version 2, as
11shown in the file LICENSE. The technical and financial contributors to
12Coda are listed in the file CREDITS.
13
14 Additional copyrights
15 none currently
16
17#*/
18
19#ifndef _CODA_DEPRECATIONS_H_
20#define _CODA_DEPRECATIONS_H_ 1
21
22/*
23 * Use this to label any variable or function that is relies on a single
24 * static server IP addresses (ThisHostAddr / HostAddress array).
25 *
26 * Ideally these can be either 'optimized away' or switched to using the
27 * server/port names (Server_FQDN array).
28 */
29#define WARN_SINGLE_HOMING //__attribute__ ((deprecated ("Prevents having multihomed servers")))
30
31#endif /* _CODA_DEPRECATIONS_H_ */