15 lines
437 B
C
15 lines
437 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
/* Private constants
|
|
*****************************************************************************/
|
|
|
|
/** Defines interval at which the Portal RPC server is being located (in seconds). */
|
|
#define PORTAL_RPC_LOCATE_INTERVAL 5.0
|
|
|
|
/** Defines the time after which Portal RPC servers time out (in seconds). */
|
|
#define PORTAL_RPC_LOCATE_TIMEOUT 15.0
|
|
|