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

MKServices.h « MumbleKit « src - github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6823eede96d1319bcef743fe91fefe08a3731d8 (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.

/**
 * MKServices implements convenience methods for accessing publicly available
 * Mumble services.
 */
@interface MKServices : NSObject

/**
 * Get the hostname of the closest regional services host.
 */
+ (NSString *) regionalServicesHost;

/**
 * Get the URL of the server list on a server near the client's current location.
 */
+ (NSString *) regionalServerList;

/**
 * Returns an NSURL version of the URL returned by regionalServerList.
 */
+ (NSURL *) regionalServerListURL;
@end