common: indent, no logic change to trans.h
This commit is contained in:
parent
1934c9ea00
commit
148c1f858c
@ -36,29 +36,30 @@
|
|||||||
|
|
||||||
struct trans; /* forward declaration */
|
struct trans; /* forward declaration */
|
||||||
|
|
||||||
typedef int (*ttrans_data_in)(struct trans* self);
|
typedef int (DEFAULT_CC *ttrans_data_in)(struct trans* self);
|
||||||
typedef int (*ttrans_conn_in)(struct trans* self, struct trans* new_self);
|
typedef int (DEFAULT_CC *ttrans_conn_in)(struct trans* self,
|
||||||
typedef int (*tis_term)(void);
|
struct trans* new_self);
|
||||||
|
typedef int (DEFAULT_CC *tis_term)(void);
|
||||||
|
|
||||||
struct trans
|
struct trans
|
||||||
{
|
{
|
||||||
tbus sck; /* socket handle */
|
tbus sck; /* socket handle */
|
||||||
int mode; /* 1 tcp, 2 unix socket */
|
int mode; /* 1 tcp, 2 unix socket */
|
||||||
int status;
|
int status;
|
||||||
int type1; /* 1 listener 2 server 3 client */
|
int type1; /* 1 listener 2 server 3 client */
|
||||||
ttrans_data_in trans_data_in;
|
ttrans_data_in trans_data_in;
|
||||||
ttrans_conn_in trans_conn_in;
|
ttrans_conn_in trans_conn_in;
|
||||||
void* callback_data;
|
void* callback_data;
|
||||||
int header_size;
|
int header_size;
|
||||||
struct stream* in_s;
|
struct stream* in_s;
|
||||||
struct stream* out_s;
|
struct stream* out_s;
|
||||||
char* listen_filename;
|
char* listen_filename;
|
||||||
tis_term is_term; /* used to test for exit */
|
tis_term is_term; /* used to test for exit */
|
||||||
struct stream* wait_s;
|
struct stream* wait_s;
|
||||||
char addr[256];
|
char addr[256];
|
||||||
char port[256];
|
char port[256];
|
||||||
int no_stream_init_on_data_in;
|
int no_stream_init_on_data_in;
|
||||||
int extra_flags; /* user defined */
|
int extra_flags; /* user defined */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct trans* APP_CC
|
struct trans* APP_CC
|
||||||
|
Loading…
Reference in New Issue
Block a user