aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/provider/MCNetService.h
blob: c2560ec3364757f33babfbacacc6a3ebb92eae67 (plain)
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
44
45
46
47
48
//
//  MCNetService.h
//  mailcore2
//
//  Created by Robert Widmann on 4/28/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE__MCNetService__
#define __MAILCORE__MCNetService__

#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCMessageConstants.h>

#ifdef __cplusplus

namespace mailcore {
	class NetService : public Object {
		
	public:
		NetService(HashMap * info);
		~NetService();

		void setHostname(String * hostname);
		String * hostname();
		
		void setPort(unsigned int port);
		unsigned int port();
		
		void setConnectionType(ConnectionType connectionType);
		ConnectionType connectionType();
				
		HashMap * info();
		
		String * normalizedHostnameWithEmail(String * email);
				
	private:
		String * mHostname;
		unsigned int mPort;
		ConnectionType mConnectionType;
		
		void init();
	};
}

#endif
	
#endif /* defined(__MAILCORE__MCNetService__) */