mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
27 lines
829 B
Objective-C
Executable file
27 lines
829 B
Objective-C
Executable file
#import <Foundation/Foundation.h>
|
|
|
|
@class XMLRPCConnection, XMLRPCRequest, XMLRPCResponse;
|
|
|
|
@protocol XMLRPCConnectionDelegate<NSObject>
|
|
|
|
@required
|
|
- (void)request: (XMLRPCRequest *)request didReceiveResponse: (XMLRPCResponse *)response;
|
|
|
|
@optional
|
|
- (void)request: (XMLRPCRequest *)request didSendBodyData: (float)percent;
|
|
|
|
@required
|
|
- (void)request: (XMLRPCRequest *)request didFailWithError: (NSError *)error;
|
|
|
|
#pragma mark -
|
|
|
|
@required
|
|
- (BOOL)request: (XMLRPCRequest *)request canAuthenticateAgainstProtectionSpace: (NSURLProtectionSpace *)protectionSpace;
|
|
|
|
@required
|
|
- (void)request: (XMLRPCRequest *)request didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge;
|
|
|
|
@required
|
|
- (void)request: (XMLRPCRequest *)request didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge;
|
|
|
|
@end
|