Changeset 153cc76a in mainline for uspace/srv/net/tl/tcp/tcp_type.h
- Timestamp:
- 2011-12-23T16:42:22Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e1b130
- Parents:
- 4291215 (diff), 2f0dd2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/tcp_type.h
r4291215 r153cc76a 162 162 acpass_t ap; 163 163 164 /** Protects access to connection structure */ 165 fibril_mutex_t lock; 166 /** Reference count */ 167 atomic_t refcnt; 168 164 169 /** Connection state */ 165 170 tcp_cstate_t cstate; 166 171 /** True if connection was reset */ 167 172 bool reset; 168 /** Protects @c cstate*/169 fibril_mutex_t cstate_lock;173 /** True if connection was deleted by user */ 174 bool deleted; 170 175 /** Signalled when @c cstate changes */ 171 176 fibril_condvar_t cstate_cv; … … 191 196 /** Receive buffer contains FIN */ 192 197 bool rcv_buf_fin; 193 /** Receive buffer lock */194 fibril_mutex_t rcv_buf_lock;195 198 /** Receive buffer CV. Broadcast when new data is inserted */ 196 199 fibril_condvar_t rcv_buf_cv; … … 204 207 /** Send buffer contains FIN */ 205 208 bool snd_buf_fin; 209 /** Send buffer CV. Broadcast when space is made available in buffer */ 210 fibril_condvar_t snd_buf_cv; 206 211 207 212 /** Send unacknowledged */
Note:
See TracChangeset
for help on using the changeset viewer.