Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MKServices.m « src - github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cb6ce05cfa95d6406b4c8d4170536067e8e0897 (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
// Copyright 2009-2012 The MumbleKit Developers. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#import <MumbleKit/MKServices.h>

@implementation MKServices

+ (NSString *) regionalServicesHost {
	return nil;
}

/*
 * Public server list
 */

+ (NSString *) regionalServerList {
	return @"https://publist.mumble.info/v1/list";
}

+ (NSURL *) regionalServerListURL {
	return [NSURL URLWithString:[MKServices regionalServerList]];
}

@end