Module: sip-router
Branch: master
Commit: fc9dba1286c0e3c9ee4e28a7959cb03178f6b121
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fc9dba1…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Wed Jul 6 23:48:44 2011 +0200
tm: remove two dlg related files which are not used and don't contain real code
---
modules/tm/t_dlg.c | 46 ----------------------------------------------
modules/tm/t_dlg.h | 47 -----------------------------------------------
2 files changed, 0 insertions(+), 93 deletions(-)
diff --git a/modules/tm/t_dlg.c b/modules/tm/t_dlg.c
deleted file mode 100644
index cbc88d4..0000000
--- a/modules/tm/t_dlg.c
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * $Id$
- *
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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; either version 2 of the License, or
- * (at your option) any later version
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact
iptel.org by e-mail at the following addresses:
- * info(a)iptel.org
- *
- * ser 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
- */
-
-
-#include "defs.h"
-
-#include "t_dlg.h"
-
-dlg_t dlg=0;
-
-int t_newdlg( struct sip_msg *msg )
-{
- /* place-holder */
- dlg=0;
- return 0;
-}
-
-dlg_t t_getdlg() {
- return dlg;
-}
-
diff --git a/modules/tm/t_dlg.h b/modules/tm/t_dlg.h
deleted file mode 100644
index 87c5a50..0000000
--- a/modules/tm/t_dlg.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * $Id$
- *
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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; either version 2 of the License, or
- * (at your option) any later version
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact
iptel.org by e-mail at the following addresses:
- * info(a)iptel.org
- *
- * ser 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
- */
-
-
-#ifndef _T_DLG_H
-#define _T_DLG_H
-
-#include "defs.h"
-
-
-#include "../../parser/msg_parser.h"
-
-struct dialog {
- int place_holder;
-};
-
-typedef struct dialog *dlg_t;
-
-int t_newdlg( struct sip_msg *msg );
-dlg_t t_getdlg() ;
-
-#endif