Skip to content

Commit

Permalink
tm: typedefs renamed to match better module and common pattern
Browse files Browse the repository at this point in the history
- were not used so far

(cherry picked from commit 0ea6299)
(cherry picked from commit 7438c75)
  • Loading branch information
miconda committed Apr 3, 2019
1 parent e1ca85d commit f77b6f4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/modules/tm/h_table.h
Expand Up @@ -162,7 +162,7 @@ typedef struct retr_buf
struct dest_info dst;
ticks_t retr_expire;
ticks_t fr_expire; /* ticks value after which fr. will fire */
} retr_buf_type;
} tm_retr_buf_t;


/* User Agent Server content */
Expand All @@ -181,7 +181,7 @@ typedef struct ua_server
* for e2e cancels */
#endif /* CANCEL_REASON_SUPPORT */
unsigned int status;
} ua_server_type;
} tm_ua_server_t;


/* User Agent Client content */
Expand Down Expand Up @@ -244,15 +244,15 @@ typedef struct ua_client
unsigned short on_reply;
/* unused - keep the structure aligned to 32b */
unsigned short on_unused;
} ua_client_type;
} tm_ua_client_t;


struct totag_elem
typedef struct totag_elem
{
struct totag_elem *next;
str tag;
volatile int acked;
};
} tm_totag_elem_t;

/* structure for storing transaction state prior to suspending
* of async transactions */
Expand All @@ -262,7 +262,7 @@ typedef struct async_state
unsigned int backup_branch;
unsigned int blind_uac;
unsigned int ruri_new;
} async_state_type;
} tm_async_state_t;

/* transaction's flags */
/* is the transaction's request an INVITE? */
Expand Down Expand Up @@ -503,7 +503,7 @@ typedef struct entry
unsigned long cur_entries;
#endif
char _pad[ENTRY_PAD_BYTES];
} entry_type;
} tm_entry_t;


/* transaction table */
Expand Down

0 comments on commit f77b6f4

Please sign in to comment.