sip 1.12.11devel
|
00001 /* 00002 * This file is part of the Sofia-SIP package 00003 * 00004 * Copyright (C) 2005 Nokia Corporation. 00005 * 00006 * Contact: Pekka Pessi <pekka.pessi@nokia-email.address.hidden> 00007 * 00008 * This library is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU Lesser General Public License 00010 * as published by the Free Software Foundation; either version 2.1 of 00011 * the License, or (at your option) any later version. 00012 * 00013 * This library is distributed in the hope that it will be useful, but 00014 * WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this library; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 00021 * 02110-1301 USA 00022 * 00023 */ 00024 00025 #ifndef SIP_TAG_CLASS_H 00026 00027 #define SIP_TAG_CLASS_H 00028 00029 00040 #ifndef SU_TAG_CLASS_H 00041 #include <sofia-sip/su_tag_class.h> 00042 #endif 00043 00044 #ifndef MSG_TAG_CLASS_H 00045 #include <sofia-sip/msg_tag_class.h> 00046 #endif 00047 00048 SOFIA_BEGIN_DECLS 00049 00051 #define SIPHDRTAG_NAMED_TYPEDEF(n, t) \ 00052 {{ TAG_NAMESPACE, #n, siphdrtag_class, \ 00053 (tag_value_t)sip_##t##_class }} 00054 00056 #define SIPHDRTAG_TYPEDEF(t) SIPHDRTAG_NAMED_TYPEDEF(t, t) 00057 00059 #define SIPSTRTAG_TYPEDEF(t) \ 00060 {{ TAG_NAMESPACE, #t "_str", sipstrtag_class, \ 00061 (tag_value_t)sip_##t##_class }} 00062 00064 #define SIPMSGTAG_TYPEDEF(t) \ 00065 {{ TAG_NAMESPACE, #t, sipmsgtag_class, \ 00066 (tag_value_t)SIP_PROTOCOL_TAG }} 00067 00069 SOFIAPUBVAR tag_class_t siphdrtag_class[1]; 00071 SOFIAPUBVAR tag_class_t sipstrtag_class[1]; 00073 SOFIAPUBVAR tag_class_t sipmsgtag_class[1]; 00074 00076 #define SIPEXTHDRTAG_TYPEDEF(n, t) \ 00077 {{ TAG_NAMESPACE, #n, sipexthdrtag_class, \ 00078 (tag_value_t)sip_##t##_class }} 00079 00081 SOFIAPUBVAR tag_class_t sipexthdrtag_class[1]; 00082 00083 00085 SOFIAPUBFUN tagi_t *siptag_filter(tagi_t *dst, tagi_t const f[], 00086 tagi_t const *src, 00087 void **bb); 00088 00089 SOFIA_END_DECLS 00090 00091 #endif