diff options
| author | speidy <speidy@gmail.com> | 2014-03-04 23:56:26 +0200 |
|---|---|---|
| committer | speidy <speidy@gmail.com> | 2014-03-04 23:56:26 +0200 |
| commit | 866fde498efe893144b0b596999f18af90a743c3 (patch) | |
| tree | c09f2d5f3f30e59e5023b99e086ce2275c18889c /libxrdp/libxrdp.h | |
| parent | 08baf1a5bca7ed41cd9809118f01ba583f5e160b (diff) | |
| download | xrdp-proprietary-866fde498efe893144b0b596999f18af90a743c3.tar.gz xrdp-proprietary-866fde498efe893144b0b596999f18af90a743c3.zip | |
libxrdp: move fastpath callback calls from xrdp_rdp to xrdp_fastpath
Diffstat (limited to 'libxrdp/libxrdp.h')
| -rw-r--r-- | libxrdp/libxrdp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libxrdp/libxrdp.h b/libxrdp/libxrdp.h index 2843089b..4e7218d6 100644 --- a/libxrdp/libxrdp.h +++ b/libxrdp/libxrdp.h @@ -72,6 +72,7 @@ struct xrdp_fastpath { struct xrdp_sec* sec_layer; /* owner */ struct trans* trans; + struct xrdp_session* session; int numEvents; int secFlags; }; @@ -386,8 +387,6 @@ xrdp_rdp_process_confirm_active(struct xrdp_rdp* self, struct stream* s); int APP_CC xrdp_rdp_process_data(struct xrdp_rdp* self, struct stream* s); int APP_CC -xrdp_rdp_process_fastpath_data_input(struct xrdp_rdp *self, struct stream *s); -int APP_CC xrdp_rdp_disconnect(struct xrdp_rdp* self); int APP_CC xrdp_rdp_send_deactive(struct xrdp_rdp* self); @@ -551,5 +550,6 @@ void APP_CC xrdp_fastpath_delete(struct xrdp_fastpath *self); int APP_CC xrdp_fastpath_recv(struct xrdp_fastpath *self, struct stream *s); - +int APP_CC +xrdp_fastpath_process_input_event(struct xrdp_fastpath *self, struct stream *s); #endif |
