TypicalAM / Yarilo

Wireless Network Traffic Decrypter & Packet Analyzer
4 stars 0 forks source link

Backend #5

Closed TypicalAM closed 5 months ago

TypicalAM commented 7 months ago

We need to create a backend that will send the data through to the client. Initial solutions include gRPC streaming or websockets. Something like this be able to efficiently stream the data between c++ and a client-side language. I think json may be to slow in this scenario (maybe also exclude non tcp/udp packets).

TypicalAM commented 7 months ago

Front to back? gRPC

service PacketStreamService {
  rpc StreamPackets(SSID) returns (stream Packet);
}