No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

request.h 263B

1234567891011121314
  1. /* tsiproxy mpeg transport stream proxy */
  2. #ifndef REQUEST_H
  3. # define REQUEST_H
  4. #include <sys/time.h>
  5. typedef struct req_info {
  6. int clientsock;
  7. struct sockaddr_in client;
  8. } request_info;
  9. void process_request(void *in_req); /* Uses struct req_info */
  10. #endif