FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
VerifyCertificateController.h
1/*
2 Certificate verification controller
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import <UIKit/UIKit.h>
12
13@class RDPSession;
14
15@interface VerifyCertificateController : UIViewController
16{
17 @private
18 IBOutlet UILabel *_label_issuer;
19 IBOutlet UIButton *_btn_accept;
20 IBOutlet UIButton *_btn_decline;
21 IBOutlet UILabel *_label_message;
22 IBOutlet UILabel *_label_for_issuer;
23
24 RDPSession *_session;
25 NSMutableDictionary *_params;
26}
27
28- (id)initWithNibName:(NSString *)nibNameOrNil
29 bundle:(NSBundle *)nibBundleOrNil
30 session:(RDPSession *)session
31 params:(NSMutableDictionary *)params;
32
33@end