1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
* $Id: mi_datagram.h 1133 2007-04-02 17:31:13Z ancuta_onofrei $
*
* Copyright (C) 2007 Voice Sistem SRL
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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.
*
* Kamailio 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*
* History:
* ---------
* 2007-06-25 first version (ancuta)
*/
/*!
* \file
* \brief MI_DATAGRAM :: Common declarations
* \ingroup mi
*/
#ifndef _MI_DATAGRAM_H_
#define _MI_DATAGRAM_H_
#include <sys/socket.h>
#include <sys/un.h>
#include "../../ip_addr.h"
#define DEFAULT_MI_REPLY_IDENT "\t"
#define MI_CMD_SEPARATOR ':'
#define MI_ATTR_VAL_SEP1 ':' /*!< the 2-chars separator between name and value */
#define MI_ATTR_VAL_SEP2 ':' /*!< the 2-chars separator between name and value */
#define MAX_MI_FILENAME 128 /*!< maximum size for the socket reply name */
#define MI_CHILD_NO 1 /*!< size of buffer used by parser to read and build the MI tree */
/*! \brief union because we support 3 types of sockaddr : UNIX, IPv4 and IPv6*/
typedef union{
union sockaddr_union udp_addr;
struct sockaddr_un unix_addr;
} sockaddr_dtgram;
typedef union{
struct sockaddr_un unix_deb;
struct sockaddr_in inet_v4;
struct sockaddr_in6 inet_v6;
} my_sock_address;
typedef struct{
my_sock_address address;
unsigned int domain;
int address_len;
} my_socket_address;
#endif /* _MI_DATAGRAM */
|