00001 /* 00002 * $Id: diam_dict.h 5299 2008-12-04 18:12:33Z henningw $ 00003 * 00004 * Copyright (C) 2002-2003 FhG Fokus 00005 * 00006 * This file is part of disc, a free diameter server/client. 00007 * 00008 * This program is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program; if not, write to the Free Software 00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 * 00022 * History: 00023 * -------- 00024 */ 00025 00026 /*! \file 00027 * \ingroup acc 00028 * \brief Acc:: Diameter support 00029 * 00030 * - Module: \ref acc 00031 */ 00032 00033 #ifdef DIAM_ACC 00034 00035 #ifndef DIAM_ACC_H 00036 #define DIAM_ACC_H 00037 00038 #define SERVICE_LEN 1 00039 #define SIP_ACCOUNTING "9" 00040 00041 #define vendorID 0 00042 00043 /*! \brief Accounting AVPs */ 00044 enum{ 00045 /*Accounting*/ 00046 AVP_SIP_CALLID = 550, /* string */ 00047 AVP_SIP_METHOD = 551, /* string */ 00048 AVP_SIP_STATUS = 552, /* string */ 00049 AVP_SIP_FROM_TAG = 553, /* string */ 00050 AVP_SIP_TO_TAG = 554, /* string */ 00051 AVP_SIP_CODE = 564 /* string */ 00052 }; 00053 00054 #endif 00055 00056 00057 #endif 00058
1.5.6