Home
>
Lucent Technologies
>
Communications System
>
Lucent Technologies DEFINITY Enterprise Communications Server Release 6 CallVisor PC ASAI Instructions Manual
Lucent Technologies DEFINITY Enterprise Communications Server Release 6 CallVisor PC ASAI Instructions Manual
Here you can view all the pages of manual Lucent Technologies DEFINITY Enterprise Communications Server Release 6 CallVisor PC ASAI Instructions Manual. The Lucent Technologies manuals for Communications System are available online for free. You can easily download all the documents as PDF.
Page 411
Testing Issue 3 May 1998 10-13 Heartbeat Confirmation — C_HB_CONF This message is received from the ECS confirming a heartbeat request. Its output looks like the following: : Figure 10-6. Heartbeat Confirmation Message The contents of the output file look like the following: Figure 10-7. Heartbeat Confirmation Output --- HEARTBEAT CONFIRMATION --- asai_common->capability = 24 asai_common->primitive_type = 1 asai_common->cluster_id = 10 asai_common.capability = 24 asai_common.primitive_type = 1...
Page 412
Testing 10-14Issue 3 May 1998 Set Value Confirmation — C_SV_CONF This message confirms a set value request. Its screen output resembles the following: Figure 10-8. Set Value Confirmation Message --- SET VALUE CONFIRMATION --- asai_common->capability = 31 asai_common->primitive_type = 1 asai_common->cluster_id = 10
Page 413
Testing Issue 3 May 1998 10-15 Event Report — C_EN_REP This message contains event reports sent to the adjunct (PC) by the ECS. Incoming Call Event Report The following event report is generated when an external caller places a call to an ASAI-controlled domain. : Figure 10-9. Incoming Call Event Report For explanations of each field’s meaning, see Chapter 9, ‘‘Programming Manual Pages.’’ --- EVENT REPORT --- asai_common->capability = 22 asai_common->primitive_type = 0 asai_common->cluster_id = 10...
Page 414
Testing 10-16Issue 3 May 1998 Figure 10-10. Call Alerting Figure 10-11. Connected Report Figure 10-12. Drop Report --- EVENT REPORT --- asai_common->capability = 22 asai_common->primitive_type = 0 asai_common->cluster_id = 10 ev_rpt_ptr->erep_common.event_name = 0 --- ALERTING REPORT --- ev_rpt_ptr->alert_list.connect_num = 1234567890 ev_rpt_ptr->alert_list.clling_num = 1234567890 ev_rpt_ptr->alert_list.dial_num = 1234567890 --- EVENT REPORT --- asai_common->capability = 22 asai_common->primitive_type...
Page 415
Testing Issue 3 May 1998 10-17 Figure 10-13. Call End Report --- EVENT REPORT --- asai_common->capability = 22 asai_common->primitive_type = 0 asai_common->cluster_id = 10 ev_rpt_ptr->erep_common.event_name = 12 --- CALLEND REPORT --- ev_rpt_ptr->calend_list.calend_cause = 25
Page 416
Testing 10-18Issue 3 May 1998 Manual Pages The following manual pages describe the utilities available to test the tool for the programmers. close_dialog_out(3) Name close_dialog_out Synopsis close_dialog_out() Description Closes the temporary dialog-recording file opened by open_dialog_out. It knows the FILE pointer used for the file because the open function stored it in a static variable. Return Value Returns SUCCESS or causes the program to exit with a status of 16.
Page 417
Testing Issue 3 May 1998 10-19 get_long(3) Name get_long Synopsis long get_long( fieldname, cap_info ) char *fieldname; struct cap_info *cap_info; Description Obtains the current value of the specified field from the capability information structure if that value is of type long. The cap_info argument can either be the address of the start of the table or the address of the proper entry itself. Return Value Returns the long value requested or exits with a status of 19 if the value...
Page 418
Testing 10-20Issue 3 May 1998 get_string(3) Name get_string Synopsis char *get_string( fieldname, cap_info ) char *fieldname; struct cap_info *cap_info; Description Obtains the current value of the specified field from the capability information structure if that value is a string. The cap_info argument can either be the address of the start of the table or the address of the proper entry itself. Return Value Returns the pointer to the string requested or exits the program with a...
Page 419
Testing Issue 3 May 1998 10-21 open_dialog_out(3) Name open_dialog_out Synopsis open_dialog_out(filename) char *filename; Description Opens the file whose name is pointed to by its argument. If unsuccessful, it causes the program to exit with a value of 15. It stores the FILE pointer in a static variable, allowing append_dialog() and close_dialog_out() to access the file directly. Return Value Returns the defined value of SUCCESS.
Page 420
Testing 10-22Issue 3 May 1998 parse(3) Name parse Synopsis int parse( prim, nid, clid, batch_ans, ans_len, ans_filename ) long *prim; char *nid; long *clid; char *batch_ans; int ans_len; char *ans_filename; Description Parses the remainder of a script file command line and returns the operation mode of the function based on the information on the command line. It stores the various information elements in the variables (and arrays) whose addresses are...