-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathAKSIPURI.h
More file actions
43 lines (32 loc) · 1.46 KB
/
AKSIPURI.h
File metadata and controls
43 lines (32 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// AKSIPURI.h
// Telephone
//
// Copyright © 2008-2016 Alexey Kuznetsov
// Copyright © 2016-2022 64 Characters
//
// Telephone is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Telephone is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
@import Foundation;
NS_ASSUME_NONNULL_BEGIN
@interface AKSIPURI : NSObject <NSCopying>
@property(nonatomic, readonly, copy) NSString *SIPAddress;
@property(nonatomic, copy) NSString *user;
@property(nonatomic, copy) NSString *host;
@property(nonatomic, copy) NSString *displayName;
@property(nonatomic, assign) NSInteger port;
+ (instancetype)SIPURIWithUser:(NSString *)user host:(NSString *)host displayName:(NSString *)displayName;
+ (nullable instancetype)SIPURIWithString:(NSString *)SIPURIString;
- (instancetype)initWithUser:(NSString *)user host:(NSString *)host displayName:(NSString *)displayName port:(NSInteger)port NS_DESIGNATED_INITIALIZER;
- (instancetype)initWithUser:(NSString *)user host:(NSString *)host displayName:(NSString *)displayName;
- (nullable instancetype)initWithString:(NSString *)SIPURIString;
@end
NS_ASSUME_NONNULL_END