// $Id: getvserverbyctx.c,v 1.6 2004/03/11 04:40:29 ensc Exp $ --*- c -*-- // Copyright (C) 2003 Enrico Scholz // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; version 2 of the License. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifdef HAVE_CONFIG_H # include #endif #include "vserver.h" #include "internal.h" #include "pathconfig.h" #include "compat-c99.h" #include #include #include "getvserverbyctx-compat.hc" #include "getvserverbyctx-v13.hc" char * vc_getVserverByCtx(xid_t ctx, vcCfgStyle *style, char const *revdir) { if (vc_isSupported(vcFEATURE_MIGRATE)) return vc_getVserverByCtx_v13(ctx, style, revdir); else return vc_getVserverByCtx_compat(ctx, style, revdir); }