Sunshine/sunshine/stream.h

22 lines
291 B
C
Raw Normal View History

//
// Created by loki on 6/5/19.
//
#ifndef SUNSHINE_STREAM_H
#define SUNSHINE_STREAM_H
#include "crypto.h"
namespace stream {
2019-12-15 18:36:22 +00:00
//FIXME: Make thread safe
extern crypto::aes_t gcm_key;
extern crypto::aes_t iv;
2019-12-15 18:36:22 +00:00
extern std::string app_name;
void rtpThread();
}
#endif //SUNSHINE_STREAM_H