diff url.h @ 833:b8cecdc0c67f

Starting implementation of ASF network streaming.
author bertrand
date Fri, 18 May 2001 16:14:06 +0000
parents
children 9141234715a2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/url.h	Fri May 18 16:14:06 2001 +0000
@@ -0,0 +1,15 @@
+#ifndef URL_H
+#define URL_H
+
+typedef struct {
+	char *url;
+	char *protocol;
+	char *hostname;
+	char *path;
+	unsigned int port;
+} URL_t;
+
+URL_t* set_url(char* url);
+void   free_url(URL_t* url);
+
+#endif