mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 06:32:59 +00:00
24 lines
748 B
Objective-C
24 lines
748 B
Objective-C
//
|
|
// HttpRequest.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 2/1/15.
|
|
// Copyright (c) 2015 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "HttpResponse.h"
|
|
|
|
@interface HttpRequest : NSObject
|
|
|
|
@property (nonatomic) id<Response> response;
|
|
@property (nonatomic) NSURLRequest* request;
|
|
@property (nonatomic) int fallbackError;
|
|
@property (nonatomic) NSURLRequest* fallbackRequest;
|
|
|
|
+ (instancetype) requestForResponse:(id<Response>)response withUrlRequest:(NSURLRequest*)req fallbackError:(int)error fallbackRequest:(NSURLRequest*) fallbackReq;
|
|
+ (instancetype) requestForResponse:(id<Response>)response withUrlRequest:(NSURLRequest*)req;
|
|
+ (instancetype) requestWithUrlRequest:(NSURLRequest*)req;
|
|
|
|
@end
|