2007-03-01 22:36:52 -03:00
|
|
|
//
|
|
|
|
// HTTPSource.h
|
|
|
|
// HTTPSource
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/1/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2007-10-14 13:29:49 -03:00
|
|
|
#import "Semaphore.h"
|
2007-03-01 22:36:52 -03:00
|
|
|
#import "Plugin.h"
|
|
|
|
|
|
|
|
@interface HTTPSource : NSObject <CogSource>
|
|
|
|
{
|
2007-10-14 13:29:49 -03:00
|
|
|
NSURLConnection *_connection;
|
2007-03-01 22:36:52 -03:00
|
|
|
|
2007-10-14 13:29:49 -03:00
|
|
|
long _byteCount;
|
|
|
|
BOOL _connectionFinished;
|
|
|
|
|
|
|
|
NSMutableData *_data;
|
|
|
|
Semaphore *_sem;
|
2007-03-03 21:17:05 -03:00
|
|
|
|
2007-10-14 13:29:49 -03:00
|
|
|
NSURL *_url;
|
2007-03-01 22:36:52 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|