You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
Steps for receiving a file transfer with libemussa:
On receiving a file transfer, callback EMUSSA_CALLBACK_FILE_TRANSFER_REQUEST is called
When the user accepts the file transfer, call accept_transfer from libemussa library
Yahoo will send a file info packet; EMUSSA_CALLBACK_FILE_TRANSFER_INFO will be called
Download the file; if the transfer contains multiple files, after each successfully download call accept_transfer_next_file to get the next file (then the workflow restarts from point 3).
Steps for sending a file transfer with libemussa:
Call send_files from libemussa
When the other user will accept the file, callback EMUSSA_CALLBACK_FILE_TRANSFER_ACCEPT is called; otherwise libemussa will call EMUSSA_CALLBACK_FILE_TRANSFER_REJECT callback.