1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: net_Timeout.h 4 5 Copyright (C)2009 Nintendo Co., Ltd. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Rev: 12372 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_NET_NET_TIMEOUT_H_ 17 #define NN_NET_NET_TIMEOUT_H_ 18 19 // プロセス終了時は待ち時間が長すぎると Terminate されてしまう (タイムアウト 3 秒) 20 #define NN_NET_EXIT_TIMEOUT_AC 100 21 #define NN_NET_EXIT_TIMEOUT_SOCKET 250 22 #define NN_NET_EXIT_TIMEOUT_NWM 500 23 24 #define NN_NET_SLEEP_TIMEOUT_AC 500 25 #define NN_NET_SLEEP_TIMEOUT_SOCKET 800 26 #define NN_NET_SLEEP_TIMEOUT_NWM 1000 27 28 #define NN_NET_WIFIOFF_TIMEOUT_AC 500 29 #define NN_NET_WIFIOFF_TIMEOUT_SOCKET 800 30 #define NN_NET_WIFIOFF_TIMEOUT_NWM 1000 31 32 #endif // ifndef NN_NET_NET_TIMEOUT_H_ 33