Lines Matching refs:u8
62 u8 type;
67 u8 peer_done_writing : 1; /* Sending done indicator */
68 u8 peer_conn_closed : 1; /* Peer connection closed indicator */
69 u8 peer_conn_abort : 1; /* Abnormal close indicator */
70 u8 reserved : 5;
72 u8 reserved : 5;
73 u8 peer_conn_abort : 1;
74 u8 peer_conn_closed : 1;
75 u8 peer_done_writing : 1;
81 u8 write_blocked : 1; /* Writing Blocked, no rx buf space */
82 u8 urg_data_pending : 1; /* Urgent Data Pending */
83 u8 urg_data_present : 1; /* Urgent Data Present */
84 u8 cons_curs_upd_req : 1; /* cursor update requested */
85 u8 failover_validation : 1;/* message replay due to failover */
86 u8 reserved : 3;
88 u8 reserved : 3;
89 u8 failover_validation : 1;
90 u8 cons_curs_upd_req : 1;
91 u8 urg_data_present : 1;
92 u8 urg_data_pending : 1;
93 u8 write_blocked : 1;
114 u8 len; /* length = 44 */
123 u8 reserved[18];
143 u8 peer_rmbe_idx; /* from tcp handshake */
215 u8 rx_off; /* receive offset:
219 u8 killed : 1; /* abnormal termination */
220 u8 out_of_sync : 1; /* out of sync with peer */
248 u8 wait_close_tx_prepared : 1;
253 u8 connect_nonblock : 1;
279 extern u8 local_systemid[SMC_SYSTEMID_LEN]; /* unique system identifier */
285 static inline void hton24(u8 *net, u32 host) in hton24()
290 memcpy(net, ((u8 *)&t) + 1, 3); in hton24()
294 static inline u32 ntoh24(u8 *net) in ntoh24()
298 memcpy(((u8 *)&t) + 1, net, 3); in ntoh24()