diff options
| author | Jay Sorg <jay.sorg@gmail.com> | 2013-09-23 18:08:22 -0700 |
|---|---|---|
| committer | Jay Sorg <jay.sorg@gmail.com> | 2013-09-23 18:08:22 -0700 |
| commit | 3b743f64ebf4c857a5784add1da72ba41fcf7025 (patch) | |
| tree | def73202e7a37d0f719d66d43daf8efa67d36a8d /common/trans.h | |
| parent | dfd78c722b738e8db4c096393b6ecf0e26435f40 (diff) | |
| download | xrdp-proprietary-3b743f64ebf4c857a5784add1da72ba41fcf7025.tar.gz xrdp-proprietary-3b743f64ebf4c857a5784add1da72ba41fcf7025.zip | |
chansrv: deadlock, add trans copy func
Diffstat (limited to 'common/trans.h')
| -rw-r--r-- | common/trans.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/trans.h b/common/trans.h index d9ad6c19..b7b9c20d 100644 --- a/common/trans.h +++ b/common/trans.h @@ -54,7 +54,7 @@ struct trans struct stream* out_s; char* listen_filename; tis_term is_term; /* used to test for exit */ - int in_write; + struct stream* wait_s; }; struct trans* APP_CC @@ -74,7 +74,7 @@ trans_force_read(struct trans* self, int size); int APP_CC trans_force_write(struct trans* self); int APP_CC -trans_write_check(struct trans* self, int timeout); +trans_write_copy(struct trans* self); int APP_CC trans_connect(struct trans* self, const char* server, const char* port, int timeout); |
