mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Initial HTTPSink implementation. Untested.
This commit is contained in:
@@ -212,11 +212,6 @@ void CS_RemoveSourcePropertyByName(CS_Source source, const char* name,
|
||||
return cs::RemoveSourceProperty(source, name, status);
|
||||
}
|
||||
|
||||
CS_Sink CS_CreateHTTPSink(const char* name, const char* listenAddress, int port,
|
||||
CS_Status* status) {
|
||||
return cs::CreateHTTPSink(name, listenAddress, port, status);
|
||||
}
|
||||
|
||||
CS_Sink CS_CreateCvSink(const char* name, CS_Status* status) {
|
||||
return cs::CreateCvSink(name, status);
|
||||
}
|
||||
@@ -263,10 +258,6 @@ void CS_ReleaseSink(CS_Sink sink, CS_Status* status) {
|
||||
return cs::ReleaseSink(sink, status);
|
||||
}
|
||||
|
||||
void CS_SetSinkSourceChannel(CS_Sink sink, int channel, CS_Status* status) {
|
||||
return cs::SetSinkSourceChannel(sink, channel, status);
|
||||
}
|
||||
|
||||
uint64_t CS_SinkWaitForFrame(CS_Sink sink, CS_Status* status) {
|
||||
return cs::SinkWaitForFrame(sink, status);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user