blob: 30936fd9d4a31e0ec4520f310d4858ec49e1a321 [file] [log] [blame]
Donald E Curtisa8736442015-08-05 15:48:13 -07001/*
2 * Copyright 2011 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef EXAMPLES_PEERCONNECTION_CLIENT_DEFAULTS_H_
12#define EXAMPLES_PEERCONNECTION_CLIENT_DEFAULTS_H_
Donald E Curtisa8736442015-08-05 15:48:13 -070013
pbosc7c26a02017-01-02 08:42:32 -080014#include <stdint.h>
Donald E Curtisa8736442015-08-05 15:48:13 -070015
pbosc7c26a02017-01-02 08:42:32 -080016#include <string>
pbos7eb0e232017-01-02 07:32:25 -080017
Donald E Curtisa8736442015-08-05 15:48:13 -070018extern const char kAudioLabel[];
19extern const char kVideoLabel[];
Seth Hampson513449e2018-03-06 09:35:56 -080020extern const char kStreamId[];
Peter Boström0c4e06b2015-10-07 12:23:21 +020021extern const uint16_t kDefaultServerPort;
Donald E Curtisa8736442015-08-05 15:48:13 -070022
23std::string GetEnvVarOrDefault(const char* env_var_name,
24 const char* default_value);
25std::string GetPeerConnectionString();
26std::string GetDefaultServerName();
27std::string GetPeerName();
28
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020029#endif // EXAMPLES_PEERCONNECTION_CLIENT_DEFAULTS_H_