Просмотр исходного кода

History rewritten, new files GPLized

Michal Matyska 20 лет назад
Родитель
Сommit
a0fb4e8bd5
10 измененных файлов с 134 добавлено и 0 удалено
  1. 1 0
      action.c
  2. 1 0
      cfg.lex
  3. 1 0
      cfg.y
  4. 1 0
      route.c
  5. 1 0
      route_struct.c
  6. 1 0
      route_struct.h
  7. 32 0
      select.c
  8. 32 0
      select.h
  9. 32 0
      select_core.c
  10. 32 0
      select_core.h

+ 1 - 0
action.c

@@ -38,6 +38,7 @@
  *  2003-10-29  added FORCE_TCP_ALIAS_T (andrei)
  *  2004-11-30  added FORCE_SEND_SOCKET_T (andrei)
  *  2005-12-12  return & drop/exit differentiation (andrei)
+ *  2005-12-19  select framework (mma)
  */
 
 

+ 1 - 0
cfg.lex

@@ -59,6 +59,7 @@
  *  2005-12-11  added onsend_route, snd_{ip,port,proto,af},
  *              to_{ip,port} (andrei)
  *  2005-12-12  separated drop, exit, break, return, added RETCODE (andrei)
+ *  2005-12-19  select framework (mma)
  */
 
 

+ 1 - 0
cfg.y

@@ -66,6 +66,7 @@
  * 2005-11-16  fixed if (cond) cmd; (andrei)
  * 2005-12-11  added onsend_route support, fcmd (filtered cmd),
  *             snd_{ip,port,proto,af}, to_{ip,proto} (andrei)
+ * 2005-12-19  select framework (mma)
  *
  */
 

+ 1 - 0
route.c

@@ -41,6 +41,7 @@
  *  2003-10-10  added more operators support to comp_* (<,>,<=,>=,!=) (andrei)
  *  2004-10-19  added from_uri & to_uri (andrei)
  *  2005-12-12  added retcode support (anrei)
+ *  2005-12-19  select framework (mma)
  */
 
  

+ 1 - 0
route_struct.c

@@ -33,6 +33,7 @@
  *  2003-04-12  FORCE_RPORT_T added (andrei)
  *  2003-10-02  added SET_ADV_ADDRESS & SET_ADV_PORT (andrei)
  *  2004-02-24  added LOAD_AVP_T and AVP_TO_URI_T (bogdan)
+ *  2005-12-19  select framework added SELECT_O and SELECT_ST (mma)
  */
 
 

+ 1 - 0
route_struct.h

@@ -34,6 +34,7 @@
  *  2003-10-28  FORCE_TCP_ALIAS added (andrei)
  *  2004-02-24  added LOAD_AVP_T and AVP_TO_URI_T (bogdan)
  *  2005-12-11  added SND{IP,PORT,PROTO,AF}_O & TO{IP,PORT}_O (andrei)
+ *  2005-12-19  select framework added SELECT_O and SELECT_ST (mma)
  */
 
 

+ 32 - 0
select.c

@@ -1,3 +1,35 @@
+/*
+ * $Id$
+ *
+ * Copyright (C) 2005-2006 iptelorg GmbH
+ *
+ * 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:
+ *    [email protected]
+ *
+ * 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
+ *
+ * History:
+ * --------
+ *  2005-12-19  select framework (mma)
+ */
+
+
 #include "select.h"
 #include "dprint.h"
 #include "select_core.h"

+ 32 - 0
select.h

@@ -1,3 +1,35 @@
+/*
+ * $Id$
+ *
+ * Copyright (C) 2005-2006 iptelorg GmbH
+ *
+ * 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:
+ *    [email protected]
+ *
+ * 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
+ *
+ * History:
+ * --------
+ *  2005-12-19  select framework (mma)
+ */
+
+ 
 #ifndef _SELECT_H
 #define _SELECT_H
 

+ 32 - 0
select_core.c

@@ -1,3 +1,35 @@
+/*
+ * $Id$
+ *
+ * Copyright (C) 2005-2006 iptelorg GmbH
+ *
+ * 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:
+ *    [email protected]
+ *
+ * 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
+ *
+ * History:
+ * --------
+ *  2005-12-19  select framework, basic core functions (mma)
+ */
+
+ 
 #include "select.h"
 #include "select_core.h"
 #include "dprint.h"

+ 32 - 0
select_core.h

@@ -1,3 +1,35 @@
+/*
+ * $Id$
+ *
+ * Copyright (C) 2005-2006 iptelorg GmbH
+ *
+ * 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:
+ *    [email protected]
+ *
+ * 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
+ *
+ * History:
+ * --------
+ *  2005-12-19  select framework, basic core functions (mma)
+ */
+
+ 
 #ifndef _SELECT_CORE_H
 #define _SELECT_CORE_H