|
|
Paraslash Audio Streaming |
| About News Download Documentation Development |
Data Fields | |
| int | fd |
| struct stream_cipher * | recv |
| struct stream_cipher * | send |
Used for client-server communication encryption.
The traffic between (the forked child of) para_server and the remote client process is encrypted by a symmetric session key. This structure contains the keys for the stream cipher and the file descriptor for which these keys should be used.
| int fd |
The socket file descriptor.
Referenced by client_connect(), handle_connect(), recv_sb(), and send_sb().
| struct stream_cipher* recv |
Key used for receiving data.
Referenced by recv_sb().
| struct stream_cipher* send |
Key used for sending data.
Referenced by send_sb().