Sun Dec 18 20:55:51 2011

Asterisk developer's documentation


isdn_lib_intern.h File Reference

#include <mISDNuser/mISDNlib.h>
#include <mISDNuser/isdn_net.h>
#include <mISDNuser/l3dss1.h>
#include <mISDNuser/net_l3.h>
#include <pthread.h>
#include "isdn_lib.h"

Include dependency graph for isdn_lib_intern.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  isdn_msg
struct  misdn_stack
struct  send_lock

Defines

#define mISDNUSER_HEAD_SIZE   (sizeof(mISDNuser_head_t))
#define QI_ELEMENT(a)   a.off

Functions

msg_t * create_l3msg (int prim, int mt, int dinfo, int size, int nt)
struct misdn_stackget_stack_by_bc (struct misdn_bchannel *bc)
char * isdn_get_info (struct isdn_msg msgs[], enum event_e event, int nt)
msg_t * isdn_msg_build_event (struct isdn_msg msgs[], struct misdn_bchannel *bc, enum event_e event, int nt)
enum event_e isdn_msg_get_event (struct isdn_msg msgs[], msg_t *frm, int nt)
int isdn_msg_get_index (struct isdn_msg msgs[], msg_t *frm, int nt)
int isdn_msg_get_index_by_event (struct isdn_msg msgs[], enum event_e event, int nt)
char * isdn_msg_get_info (struct isdn_msg msgs[], msg_t *msg, int nt)
int isdn_msg_parse_event (struct isdn_msg msgs[], msg_t *frm, struct misdn_bchannel *bc, int nt)

Variables

ibuffer_t * astbuf
ibuffer_t * misdnbuf


Define Documentation

#define mISDNUSER_HEAD_SIZE   (sizeof(mISDNuser_head_t))

#define QI_ELEMENT (  )     a.off

Definition at line 19 of file isdn_lib_intern.h.


Function Documentation

msg_t* create_l3msg ( int  prim,
int  mt,
int  dinfo,
int  size,
int  nt 
)

Definition at line 344 of file isdn_lib.c.

Referenced by build_alerting(), build_connect(), build_connect_acknowledge(), build_disconnect(), build_facility(), build_hold(), build_hold_acknowledge(), build_hold_reject(), build_information(), build_notify(), build_proceeding(), build_progress(), build_release(), build_release_complete(), build_restart(), build_resume(), build_resume_acknowledge(), build_resume_reject(), build_retrieve(), build_retrieve_acknowledge(), build_retrieve_reject(), build_setup(), build_setup_acknowledge(), build_status(), build_status_enquiry(), build_suspend(), build_suspend_acknowledge(), build_suspend_reject(), build_timeout(), build_user_information(), and handle_event_nt().

00345 {
00346    int i = 0;
00347    msg_t *dmsg;
00348    Q931_info_t *qi;
00349    iframe_t *frm;
00350   
00351    if (!ntmode)
00352       size = sizeof(Q931_info_t)+2;
00353   
00354    while(i < 10) {
00355       if (ntmode) {
00356          dmsg = prep_l3data_msg(prim, dinfo, size, 256, NULL);
00357          if (dmsg) {
00358             return(dmsg);
00359          }
00360       } else {
00361          dmsg = alloc_msg(size+256+mISDN_HEADER_LEN+DEFAULT_HEADROOM);
00362          if (dmsg)
00363          {
00364             memset(msg_put(dmsg,size+mISDN_HEADER_LEN), 0, size+mISDN_HEADER_LEN);
00365             frm = (iframe_t *)dmsg->data;
00366             frm->prim = prim;
00367             frm->dinfo = dinfo;
00368             qi = (Q931_info_t *)(dmsg->data + mISDN_HEADER_LEN);
00369             qi->type = mt;
00370             return(dmsg);
00371          }
00372       }
00373     
00374       if (!i) printf("cannot allocate memory, trying again...\n");
00375       i++;
00376       usleep(300000);
00377    }
00378    printf("cannot allocate memory, system overloaded.\n");
00379    exit(-1);
00380 }

struct misdn_stack* get_stack_by_bc ( struct misdn_bchannel bc  )  [read]

Definition at line 118 of file isdn_lib.c.

References misdn_stack::b_num, get_misdn_stack(), misdn_stack::next, misdn_stack::port, and misdn_bchannel::port.

Referenced by clean_up_bc(), create_process(), dec_ie_channel_id(), enc_ie_channel_id(), handle_bchan(), handle_event(), manager_bchannel_activate(), manager_bchannel_deactivate(), manager_clean_bc(), manager_ec_disable(), manager_ec_enable(), manager_find_bc_holded(), misdn_lib_log_ies(), misdn_lib_release(), misdn_lib_send_event(), misdn_lib_tx2misdn_frm(), parse_release_complete(), parse_restart(), send_msg(), and setup_bc().

00119 {
00120    struct misdn_stack *stack=get_misdn_stack();
00121 
00122    if (!bc) return NULL;
00123    
00124    for ( ; stack; stack=stack->next) {
00125       int i;
00126       for (i=0; i <=stack->b_num; i++) {
00127          if ( bc->port == stack->port) return stack;
00128       }
00129    }
00130 
00131    return NULL;
00132 }

char* isdn_get_info ( struct isdn_msg  msgs[],
enum event_e  event,
int  nt 
)

msg_t* isdn_msg_build_event ( struct isdn_msg  msgs[],
struct misdn_bchannel bc,
enum event_e  event,
int  nt 
)

Definition at line 1342 of file isdn_msg_parser.c.

References isdn_msg_get_index_by_event(), and isdn_msg::msg_builder.

Referenced by misdn_lib_send_event().

01343 {
01344    int i=isdn_msg_get_index_by_event(msgs, event, nt);
01345    if(i<0) return NULL;
01346   
01347    return  msgs[i].msg_builder(msgs, bc, nt);
01348 }

enum event_e isdn_msg_get_event ( struct isdn_msg  msgs[],
msg_t *  frm,
int  nt 
)

Definition at line 1287 of file isdn_msg_parser.c.

References isdn_msg::event, EVENT_UNKNOWN, and isdn_msg_get_index().

Referenced by handle_event_nt(), and handle_frm().

01288 {
01289    int i=isdn_msg_get_index(msgs, msg, nt);
01290    if(i>=0) return msgs[i].event;
01291    return EVENT_UNKNOWN;
01292 }

int isdn_msg_get_index ( struct isdn_msg  msgs[],
msg_t *  msg,
int  nt 
)

INTERFACE FCTS

Definition at line 1255 of file isdn_msg_parser.c.

References isdn_msg::misdn_msg, and msgs_max.

Referenced by isdn_msg_get_event(), isdn_msg_get_info(), and isdn_msg_parse_event().

01256 {
01257    int i;
01258 
01259    if (nt){
01260       mISDNuser_head_t *hh = (mISDNuser_head_t*)msg->data;
01261       
01262       for (i=0; i< msgs_max -1; i++) {
01263          if ( (hh->prim&COMMAND_MASK)==(msgs[i].misdn_msg&COMMAND_MASK)) return i;
01264       }
01265       
01266    } else {
01267       iframe_t *frm = (iframe_t*)msg->data;
01268     
01269       for (i=0; i< msgs_max -1; i++) 
01270          if ( (frm->prim&COMMAND_MASK)==(msgs[i].misdn_msg&COMMAND_MASK)) return i;
01271    }
01272 
01273    return -1;
01274 }

int isdn_msg_get_index_by_event ( struct isdn_msg  msgs[],
enum event_e  event,
int  nt 
)

Definition at line 1276 of file isdn_msg_parser.c.

References cb_log, and msgs_max.

Referenced by isdn_get_info(), and isdn_msg_build_event().

01277 {
01278    int i;
01279    for (i=0; i< msgs_max; i++) 
01280       if ( event == msgs[i].event) return i;
01281 
01282    cb_log(10,0, "get_index: event not found!\n");
01283    
01284    return -1;
01285 }

char* isdn_msg_get_info ( struct isdn_msg  msgs[],
msg_t *  msg,
int  nt 
)

Definition at line 1294 of file isdn_msg_parser.c.

References isdn_msg::info, and isdn_msg_get_index().

01295 {
01296    int i=isdn_msg_get_index(msgs, msg, nt);
01297    if(i>=0) return msgs[i].info;
01298    return NULL;
01299 }

int isdn_msg_parse_event ( struct isdn_msg  msgs[],
msg_t *  frm,
struct misdn_bchannel bc,
int  nt 
)

Definition at line 1333 of file isdn_msg_parser.c.

References isdn_msg_get_index(), and isdn_msg::msg_parser.

Referenced by handle_event_nt(), and handle_frm().

01334 {
01335    int i=isdn_msg_get_index(msgs, msg, nt);
01336    if(i<0) return -1;
01337 
01338    msgs[i].msg_parser(msgs, msg, bc, nt);
01339    return 0;
01340 }


Variable Documentation

ibuffer_t* astbuf

Definition at line 29 of file isdn_lib_intern.h.

ibuffer_t* misdnbuf

Definition at line 30 of file isdn_lib_intern.h.


Generated on Sun Dec 18 20:55:51 2011 for Asterisk - the Open Source PBX by  doxygen 1.5.6