mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
20 lines
236 B
C
20 lines
236 B
C
|
//
|
||
|
// Created by loki on 6/5/19.
|
||
|
//
|
||
|
|
||
|
#ifndef SUNSHINE_STREAM_H
|
||
|
#define SUNSHINE_STREAM_H
|
||
|
|
||
|
#include "crypto.h"
|
||
|
|
||
|
namespace stream {
|
||
|
|
||
|
extern crypto::aes_t gcm_key;
|
||
|
extern crypto::aes_t iv;
|
||
|
|
||
|
void rtpThread();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif //SUNSHINE_STREAM_H
|