Navigation


Changes in / [365:4b7dbc0d187f:366:9e2da5f401bc] in freeDiameter


Ignore:
Location:
extensions
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_radgw/rgwx_sip.c

    r361 r363  
    11/*********************************************************************************************************
    22* Software License Agreement (BSD License)                                                               *
    3 * Author: Sebastien Decugis <sdecugis@nict.go.jp>                                                        *
     3* Author: Alexandre Westfahl <awestfahl@freediameter.net>                                                *
    44*                                                                                                        *
    5 * Copyright (c) 2010, WIDE Project and NICT                                                              *
     5* Copyright (c) 2010, Alexandre Westfahl, Teraoka Laboratory (Keio University), and the WIDE Project.    *             
     6*                                                                                                        *
    67* All rights reserved.                                                                                   *
     8* Based on rgwx_auth plugin (Sebastien Decugis <sdecugis@nict.go.jp>)                                    *
    79*                                                                                                        *
    810* Redistribution and use of this software in source and binary forms, with or without modification, are  *
     
    1820*   materials provided with the distribution.                                                            *
    1921*                                                                                                        *
    20 * * Neither the name of the WIDE Project or NICT nor the                                                 *
     22* * Neither the name of the Teraoka Laboratory nor the                                                   *
    2123*   names of its contributors may be used to endorse or                                                  *
    2224*   promote products derived from this software without                                                  *
    23 *   specific prior written permission of WIDE Project and                                                *
    24 *   NICT.                                                                                                *
     25*   specific prior written permission of Teraoka Laboratory                                              *
     26*                                                                                                        *
    2527*                                                                                                        *
    2628* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
     
    3335* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
    3436*********************************************************************************************************/
     37
    3538
    3639/* RADIUS Access-Request messages translation plugin */
  • extensions/app_sip/diamsip.c

    r360 r364  
     1/*********************************************************************************************************
     2* Software License Agreement (BSD License)                                                               *
     3* Author: Alexandre Westfahl <awestfahl@freediameter.net>                                                *
     4*                                                                                                        *
     5* Copyright (c) 2010, Alexandre Westfahl, Teraoka Laboratory (Keio University), and the WIDE Project.    *             
     6*                                                                                                        *
     7* All rights reserved.                                                                                   *
     8*                                                                                                        *
     9* Redistribution and use of this software in source and binary forms, with or without modification, are  *
     10* permitted provided that the following conditions are met:                                              *
     11*                                                                                                        *
     12* * Redistributions of source code must retain the above                                                 *
     13*   copyright notice, this list of conditions and the                                                    *
     14*   following disclaimer.                                                                                *
     15*                                                                                                        *
     16* * Redistributions in binary form must reproduce the above                                              *
     17*   copyright notice, this list of conditions and the                                                    *
     18*   following disclaimer in the documentation and/or other                                               *
     19*   materials provided with the distribution.                                                            *
     20*                                                                                                        *
     21* * Neither the name of the Teraoka Laboratory nor the                                                   *
     22*   names of its contributors may be used to endorse or                                                  *
     23*   promote products derived from this software without                                                  *
     24*   specific prior written permission of Teraoka Laboratory                                              *
     25*                                                                                                        *
     26*                                                                                                        *
     27* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
     28* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
     29* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
     30* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT     *
     31* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS    *
     32* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
     33* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF   *
     34* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
     35*********************************************************************************************************/
    136#include "diamsip.h"
    237
  • extensions/app_sip/diamsip.h

    r360 r364  
     1/*********************************************************************************************************
     2* Software License Agreement (BSD License)                                                               *
     3* Author: Alexandre Westfahl <awestfahl@freediameter.net>                                                *
     4*                                                                                                        *
     5* Copyright (c) 2010, Alexandre Westfahl, Teraoka Laboratory (Keio University), and the WIDE Project.    *             
     6*                                                                                                        *
     7* All rights reserved.                                                                                   *
     8*                                                                                                        *
     9* Redistribution and use of this software in source and binary forms, with or without modification, are  *
     10* permitted provided that the following conditions are met:                                              *
     11*                                                                                                        *
     12* * Redistributions of source code must retain the above                                                 *
     13*   copyright notice, this list of conditions and the                                                    *
     14*   following disclaimer.                                                                                *
     15*                                                                                                        *
     16* * Redistributions in binary form must reproduce the above                                              *
     17*   copyright notice, this list of conditions and the                                                    *
     18*   following disclaimer in the documentation and/or other                                               *
     19*   materials provided with the distribution.                                                            *
     20*                                                                                                        *
     21* * Neither the name of the Teraoka Laboratory nor the                                                   *
     22*   names of its contributors may be used to endorse or                                                  *
     23*   promote products derived from this software without                                                  *
     24*   specific prior written permission of Teraoka Laboratory                                              *
     25*                                                                                                        *
     26*                                                                                                        *
     27* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
     28* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
     29* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
     30* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT     *
     31* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS    *
     32* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
     33* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF   *
     34* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
     35*********************************************************************************************************/
    136#include <freeDiameter/extension.h>
    237#include <sys/time.h>
  • extensions/app_sip/libdiamsip.c

    r360 r364  
     1/*********************************************************************************************************
     2* Software License Agreement (BSD License)                                                               *
     3* Author: Alexandre Westfahl <awestfahl@freediameter.net>                                                *
     4*                                                                                                        *
     5* Copyright (c) 2010, Alexandre Westfahl, Teraoka Laboratory (Keio University), and the WIDE Project.    *             
     6*                                                                                                        *
     7* All rights reserved.                                                                                   *
     8*                                                                                                        *
     9* Redistribution and use of this software in source and binary forms, with or without modification, are  *
     10* permitted provided that the following conditions are met:                                              *
     11*                                                                                                        *
     12* * Redistributions of source code must retain the above                                                 *
     13*   copyright notice, this list of conditions and the                                                    *
     14*   following disclaimer.                                                                                *
     15*                                                                                                        *
     16* * Redistributions in binary form must reproduce the above                                              *
     17*   copyright notice, this list of conditions and the                                                    *
     18*   following disclaimer in the documentation and/or other                                               *
     19*   materials provided with the distribution.                                                            *
     20*                                                                                                        *
     21* * Neither the name of the Teraoka Laboratory nor the                                                   *
     22*   names of its contributors may be used to endorse or                                                  *
     23*   promote products derived from this software without                                                  *
     24*   specific prior written permission of Teraoka Laboratory                                              *
     25*                                                                                                        *
     26*                                                                                                        *
     27* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
     28* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
     29* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
     30* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT     *
     31* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS    *
     32* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
     33* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF   *
     34* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
     35*********************************************************************************************************/
    136#include <mysql.h>
    237#include "diamsip.h"
  • extensions/app_sip/multimediaauth.c

    r360 r364  
     1/*********************************************************************************************************
     2* Software License Agreement (BSD License)                                                               *
     3* Author: Alexandre Westfahl <awestfahl@freediameter.net>                                                *
     4*                                                                                                        *
     5* Copyright (c) 2010, Alexandre Westfahl, Teraoka Laboratory (Keio University), and the WIDE Project.    *             
     6*                                                                                                        *
     7* All rights reserved.                                                                                   *
     8*                                                                                                        *
     9* Redistribution and use of this software in source and binary forms, with or without modification, are  *
     10* permitted provided that the following conditions are met:                                              *
     11*                                                                                                        *
     12* * Redistributions of source code must retain the above                                                 *
     13*   copyright notice, this list of conditions and the                                                    *
     14*   following disclaimer.                                                                                *
     15*                                                                                                        *
     16* * Redistributions in binary form must reproduce the above                                              *
     17*   copyright notice, this list of conditions and the                                                    *
     18*   following disclaimer in the documentation and/or other                                               *
     19*   materials provided with the distribution.                                                            *
     20*                                                                                                        *
     21* * Neither the name of the Teraoka Laboratory nor the                                                   *
     22*   names of its contributors may be used to endorse or                                                  *
     23*   promote products derived from this software without                                                  *
     24*   specific prior written permission of Teraoka Laboratory                                              *
     25*                                                                                                        *
     26*                                                                                                        *
     27* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
     28* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
     29* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
     30* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT     *
     31* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS    *
     32* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
     33* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF   *
     34* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                                                             *
     35*********************************************************************************************************/
    136#include "diamsip.h"
    237
Note: See TracChangeset for help on using the changeset viewer.