httpstream.h 350 B

12345678910111213141516171819
  1. //
  2. // Created by janco on 25-2-16.
  3. //
  4. #ifndef _Httpstream_H
  5. #define _Httpstream_H
  6. #include "ntp.h"
  7. #define MAX_HEADERLINE 512
  8. #define MSS 536
  9. #define RX_TO 3000
  10. #define TCPBUFSIZE 8760
  11. extern bool HttpIsStreaming(void);
  12. extern void playStream(char *ipaddr, u_short port, char *radiourl);
  13. extern void stopStream(void);
  14. #endif /* _Httpstream_H */