]> Pileus Git - grits/blobdiff - src/data/gis-http.h
Add gis_http_available function
[grits] / src / data / gis-http.h
index c042a42a7a6e32ce306a478d9c8ed7daaf53c364..489bf51ec44e8543bc8ab2e9fb089778cb183ad3 100644 (file)
@@ -28,29 +28,17 @@ typedef struct _GisHttp {
        gchar *prefix;
 } GisHttp;
 
-/**
- * @param prefix The cache prefix: e.g. /nexrad/level2/
- * @return The HTTP connection handle
- */
 GisHttp *gis_http_new(const gchar *prefix);
 
-/**
- * Free data associated with the GisHttp
- * @param http the GisHttp to free
- */
 void gis_http_free(GisHttp *http);
 
-/**
- * @param http      GisHttp connection to use
- * @param uri       The uri to fetch
- * @param mode      Update type
- * @param callback  Callback to call when a chunck is recieved
- * @param user_data Data to pass to callback
- * @return The local path to the complete file
- */
 gchar *gis_http_fetch(GisHttp *http, const gchar *uri, const gchar *local,
                GisCacheType mode,
                GisChunkCallback callback,
                gpointer user_data);
 
+GList *gis_http_available(GisHttp *http,
+               gchar *filter, gchar *cache,
+               gchar *extract, gchar *index);
+
 #endif