⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 url_tag.c

📁 this is simple sip stack.
💻 C
字号:
/* * This file is part of the Sofia-SIP package * * Copyright (C) 2005 Nokia Corporation. * * Contact: Pekka Pessi <pekka.pessi@nokia.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * *//**@CFILE url_tag.c  URL Tag classes * * @author Pekka Pessi <Pekka.Pessi@nokia.com> * * @date Created: Wed Feb 21 10:15:20 2001 ppessi */#include "config.h"#define TAG_NAMESPACE "url"#include <sofia-sip/su.h>#include <sofia-sip/url_tag.h>#include <sofia-sip/url_tag_class.h>#include <sofia-sip/su_tag_class.h>#include <sofia-sip/url.h>tag_typedef_t urltag_any = NSTAG_TYPEDEF(*);tag_typedef_t urltag_url = URLTAG_TYPEDEF(url);int urltag_snprintf(tagi_t const *t, char b[], size_t size){  url_string_t const *us = (url_string_t const *)t->t_value;  if (us == NULL)    return snprintf(b, size, "<null>");  if (URL_STRING_P(us))    return snprintf(b, size, "<%s>", us->us_str);  else    return snprintf(b, size, "<" URL_PRINT_FORMAT ">", 		    URL_PRINT_ARGS(us->us_url));}size_t urltag_xtra(tagi_t const *t, size_t offset){  url_t const *url = (url_t const *)t->t_value;  if (url == NULL || url == (url_t *)-1)    return 0;  else if (URL_STRING_P(url))    return t_str_xtra(t, offset);  else    return SU_ALIGN(offset) + sizeof(*url) + url_xtra(url);}tagi_t *urltag_dup(tagi_t *dst, tagi_t const *src, void **bb){  url_t const *url = (url_t const *)src->t_value;  if (url == NULL || url == (url_t *)-1) {    dst->t_tag = src->t_tag;    dst->t_value = src->t_value;  }  else if (URL_STRING_P(url)) {    return t_str_dup(dst, src, bb);  } else {    size_t xtra = url_xtra(url);    char *b = *bb;    url_t *d;    b += SU_ALIGN(b);    d = (url_t *)b;    url_dup(b + sizeof(*d), xtra, d, url);    dst->t_tag = src->t_tag;    dst->t_value = (long)d;    *bb = b + sizeof(*d) + xtra;  }    return dst + 1;}tag_class_t url_tag_class[1] =   {{    sizeof(url_tag_class),    /* tc_next */     NULL,    /* tc_len */      NULL,    /* tc_move */     NULL,    /* tc_xtra */     urltag_xtra,    /* tc_dup */      urltag_dup,    /* tc_free */     NULL,    /* tc_find */     NULL,    /* tc_snprintf */ urltag_snprintf,    /* tc_filter */   NULL,    /* tc_ref_set */  t_ptr_ref_set,  }};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -