![]() |
|
|||
0001 /** 0002 * 0003 * @file tprecover.h 0004 */ 0005 /* ----------------------------------------------------------------------------- 0006 * Enduro/X Middleware Platform for Distributed Transaction Processing 0007 * Copyright (C) 2009-2016, ATR Baltic, Ltd. All Rights Reserved. 0008 * Copyright (C) 2017-2023, Mavimax, Ltd. All Rights Reserved. 0009 * This software is released under one of the following licenses: 0010 * AGPL (with Java and Go exceptions) or Mavimax's license for commercial use. 0011 * See LICENSE file for full text. 0012 * ----------------------------------------------------------------------------- 0013 * AGPL license: 0014 * 0015 * This program is free software; you can redistribute it and/or modify it under 0016 * the terms of the GNU Affero General Public License, version 3 as published 0017 * by the Free Software Foundation; 0018 * 0019 * This program is distributed in the hope that it will be useful, but WITHOUT ANY 0020 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 0021 * PARTICULAR PURPOSE. See the GNU Affero General Public License, version 3 0022 * for more details. 0023 * 0024 * You should have received a copy of the GNU Affero General Public License along 0025 * with this program; if not, write to the Free Software Foundation, Inc., 0026 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 0027 * 0028 * ----------------------------------------------------------------------------- 0029 * A commercial use license is available from Mavimax, Ltd 0030 * contact@mavimax.com 0031 * ----------------------------------------------------------------------------- 0032 */ 0033 0034 #ifndef TPRECOVER_H 0035 #define TPRECOVER_H 0036 0037 #ifdef __cplusplus 0038 extern "C" { 0039 #endif 0040 0041 /*---------------------------Includes-----------------------------------*/ 0042 /*---------------------------Externs------------------------------------*/ 0043 /*---------------------------Macros-------------------------------------*/ 0044 /*---------------------------Enums--------------------------------------*/ 0045 /*---------------------------Typedefs-----------------------------------*/ 0046 typedef struct event_entry event_entry_t; 0047 0048 0049 struct event_entry 0050 { 0051 char eventexpr[255+1]; /* Compile the regex? */ 0052 char filter[255+1]; 0053 char name1[32]; /* currently service name only */ 0054 long flags; 0055 regex_t re; /* compiled regex */ 0056 long subscriberNr; 0057 char my_id[NDRX_MAX_ID_SIZE+1]; /* caller ID */ 0058 event_entry_t *next; 0059 event_entry_t *prev; 0060 }; 0061 /*---------------------------Globals------------------------------------*/ 0062 /*---------------------------Statics------------------------------------*/ 0063 /*---------------------------Prototypes---------------------------------*/ 0064 0065 0066 #ifdef __cplusplus 0067 } 0068 #endif 0069 0070 #endif /* TPRECOVER_H */ 0071 0072 /* vim: set ts=4 sw=4 et smartindent: */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |