27 lines
654 B
C++
27 lines
654 B
C++
#include <iostream>
|
|
#include "../sockets/SocketW.h"
|
|
#include <string>
|
|
#include <vector>
|
|
#include <cstdlib>
|
|
#include <cstdio>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
|
|
int main() {
|
|
SWUnixSocket mySocket;
|
|
mySocket.connect("../shared_socket");
|
|
char buffer[500000];
|
|
int msg;
|
|
std::string input;
|
|
// do something with mySocket...
|
|
while( std::cin >> input && input != "") {}
|
|
std::cout << "HTTP/1.1 200 OK\nConnection: close\nContent-Type: video/x-flv\n\n";
|
|
while(true) {
|
|
msg = mySocket.recv(&buffer[0],10000);
|
|
if (!std::cout.good()) { exit(0); }
|
|
std::cout.write(buffer,msg);
|
|
}
|
|
// disconnect
|
|
mySocket.disconnect();
|
|
return 0;
|
|
}
|