2001-05-29 17:03:17 +00:00
|
|
|
/*
|
|
|
|
* Network layer for MPlayer
|
|
|
|
* by Bertrand BAUDET <bertrand_baudet@yahoo.com>
|
|
|
|
* (C) 2001, MPlayer team.
|
|
|
|
*/
|
2001-05-20 12:58:41 +00:00
|
|
|
|
2001-05-29 17:03:17 +00:00
|
|
|
#ifndef __NETWORK_H
|
|
|
|
#define __NETWORK_H
|
|
|
|
|
2001-12-10 01:34:08 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2001-05-29 17:03:17 +00:00
|
|
|
#include "url.h"
|
2002-06-17 08:18:45 +00:00
|
|
|
#include "http.h"
|
2002-01-08 07:31:29 +00:00
|
|
|
#include "stream.h"
|
2001-05-20 12:58:41 +00:00
|
|
|
|
2001-06-04 17:52:33 +00:00
|
|
|
#define BUFFER_SIZE 2048
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
streaming_stopped_e,
|
|
|
|
streaming_playing_e
|
|
|
|
} streaming_status;
|
|
|
|
|
|
|
|
typedef struct streaming_control {
|
2001-11-20 22:20:20 +00:00
|
|
|
URL_t *url;
|
2001-06-04 17:52:33 +00:00
|
|
|
streaming_status status;
|
|
|
|
int buffering; // boolean
|
2001-11-20 22:20:20 +00:00
|
|
|
unsigned int prebuffer_size;
|
|
|
|
char *buffer;
|
|
|
|
unsigned int buffer_size;
|
|
|
|
unsigned int buffer_pos;
|
2002-07-05 02:35:19 +00:00
|
|
|
unsigned int bandwidth; // The downstream available
|
2001-11-20 22:20:20 +00:00
|
|
|
int (*streaming_read)( int fd, char *buffer, int buffer_size, struct streaming_control *stream_ctrl );
|
|
|
|
int (*streaming_seek)( int fd, off_t pos, struct streaming_control *stream_ctrl );
|
2001-12-11 01:06:08 +00:00
|
|
|
void *data;
|
2001-06-04 17:52:33 +00:00
|
|
|
} streaming_ctrl_t;
|
|
|
|
|
2002-02-16 21:48:59 +00:00
|
|
|
//int streaming_start( stream_t *stream, int *demuxer_type, URL_t *url );
|
2002-01-08 07:31:29 +00:00
|
|
|
|
2001-11-20 22:20:20 +00:00
|
|
|
int streaming_bufferize( streaming_ctrl_t *streaming_ctrl, char *buffer, int size);
|
2001-06-04 17:52:33 +00:00
|
|
|
|
2001-11-20 22:20:20 +00:00
|
|
|
int nop_streaming_read( int fd, char *buffer, int size, streaming_ctrl_t *stream_ctrl );
|
|
|
|
int nop_streaming_seek( int fd, off_t pos, streaming_ctrl_t *stream_ctrl );
|
2001-05-20 12:58:41 +00:00
|
|
|
|
2001-12-10 01:39:25 +00:00
|
|
|
int connect2Server(char *host, int port);
|
|
|
|
|
2002-06-17 08:18:45 +00:00
|
|
|
int http_send_request(URL_t *url);
|
|
|
|
HTTP_header_t *http_read_response(int fd);
|
|
|
|
|
2002-10-29 09:18:53 +00:00
|
|
|
int http_authenticate(HTTP_header_t *http_hdr, URL_t *url, int *auth_retry);
|
|
|
|
|
2002-08-29 07:07:12 +00:00
|
|
|
/*
|
|
|
|
* Joey Parrish <joey@yunamusic.com>:
|
|
|
|
*
|
|
|
|
* This define is to allow systems without inet_pton() to fallback on
|
|
|
|
* inet_aton(). The difference between the two is that inet_aton() is
|
|
|
|
* strictly for IPv4 networking, while inet_pton() is for IPv4 and IPv6
|
|
|
|
* both. Slightly limited network functionality seems better than no
|
|
|
|
* network functionality to me, and as all systems (Cygwin) start to
|
|
|
|
* implement inet_pton(), configure will decide not to use this code.
|
|
|
|
*/
|
|
|
|
#ifdef USE_ATON
|
|
|
|
# define inet_pton(a, b, c) inet_aton(b, c)
|
|
|
|
#endif
|
|
|
|
|
2001-05-20 12:58:41 +00:00
|
|
|
#endif
|