Annotation of embedaddon/iperf/src/iperf_locale.h, revision 1.1

1.1     ! misho       1: /*
        !             2:  * iperf, Copyright (c) 2014, The Regents of the University of
        !             3:  * California, through Lawrence Berkeley National Laboratory (subject
        !             4:  * to receipt of any required approvals from the U.S. Dept. of
        !             5:  * Energy).  All rights reserved.
        !             6:  *
        !             7:  * If you have questions about your rights to use or distribute this
        !             8:  * software, please contact Berkeley Lab's Technology Transfer
        !             9:  * Department at TTD@lbl.gov.
        !            10:  *
        !            11:  * NOTICE.  This software is owned by the U.S. Department of Energy.
        !            12:  * As such, the U.S. Government has been granted for itself and others
        !            13:  * acting on its behalf a paid-up, nonexclusive, irrevocable,
        !            14:  * worldwide license in the Software to reproduce, prepare derivative
        !            15:  * works, and perform publicly and display publicly.  Beginning five
        !            16:  * (5) years after the date permission to assert copyright is obtained
        !            17:  * from the U.S. Department of Energy, and subject to any subsequent
        !            18:  * five (5) year renewals, the U.S. Government is granted for itself
        !            19:  * and others acting on its behalf a paid-up, nonexclusive,
        !            20:  * irrevocable, worldwide license in the Software to reproduce,
        !            21:  * prepare derivative works, distribute copies to the public, perform
        !            22:  * publicly and display publicly, and to permit others to do so.
        !            23:  *
        !            24:  * This code is distributed under a BSD style license, see the LICENSE
        !            25:  * file for complete information.
        !            26:  */
        !            27: #ifndef        IPERF_LOCALE_H
        !            28: #define        IPERF_LOCALE_H
        !            29: 
        !            30: extern const char usage_shortstr[];
        !            31: extern const char usage_longstr[];
        !            32: extern const char version[];
        !            33: 
        !            34: extern const char seperator_line[];
        !            35: 
        !            36: extern const char server_port[] ;
        !            37: extern const char client_port[] ;
        !            38: extern const char bind_address[] ;
        !            39: extern const char multicast_ttl[] ;
        !            40: extern const char join_multicast[] ;
        !            41: extern const char client_datagram_size[] ;
        !            42: extern const char server_datagram_size[] ;
        !            43: extern const char tcp_window_size[] ;
        !            44: extern const char udp_buffer_size[] ;
        !            45: extern const char window_default[] ;
        !            46: extern const char wait_server_threads[] ;
        !            47: extern const char test_start_time[];
        !            48: extern const char test_start_bytes[];
        !            49: extern const char test_start_blocks[];
        !            50: 
        !            51: extern const char report_time[] ;
        !            52: extern const char report_connecting[] ;
        !            53: extern const char report_reverse[] ;
        !            54: extern const char report_accepted[] ;
        !            55: extern const char report_cookie[] ;
        !            56: extern const char report_connected[] ;
        !            57: extern const char report_window[] ;
        !            58: extern const char report_autotune[] ;
        !            59: extern const char report_omit_done[] ;
        !            60: extern const char report_diskfile[] ;
        !            61: extern const char report_done[] ;
        !            62: extern const char report_read_lengths[] ;
        !            63: extern const char report_read_length_times[] ;
        !            64: extern const char report_bw_header[] ;
        !            65: extern const char report_bw_retrans_header[] ;
        !            66: extern const char report_bw_retrans_cwnd_header[] ;
        !            67: extern const char report_bw_udp_header[] ;
        !            68: extern const char report_bw_udp_sender_header[] ;
        !            69: extern const char report_bw_format[] ;
        !            70: extern const char report_bw_retrans_format[] ;
        !            71: extern const char report_bw_retrans_cwnd_format[] ;
        !            72: extern const char report_bw_udp_format[] ;
        !            73: extern const char report_bw_udp_sender_format[] ;
        !            74: extern const char report_summary[] ;
        !            75: extern const char report_sum_bw_format[] ;
        !            76: extern const char report_sum_bw_retrans_format[] ;
        !            77: extern const char report_sum_bw_udp_format[] ;
        !            78: extern const char report_sum_bw_udp_sender_format[] ;
        !            79: extern const char report_omitted[] ;
        !            80: extern const char report_bw_separator[] ;
        !            81: extern const char report_outoforder[] ;
        !            82: extern const char report_sum_outoforder[] ;
        !            83: extern const char report_peer[] ;
        !            84: extern const char report_mss_unsupported[] ;
        !            85: extern const char report_mss[] ;
        !            86: extern const char report_datagrams[] ;
        !            87: extern const char report_sum_datagrams[] ;
        !            88: extern const char server_reporting[] ;
        !            89: extern const char reportCSV_peer[] ;
        !            90: 
        !            91: extern const char report_cpu[] ;
        !            92: extern const char report_local[] ;
        !            93: extern const char report_remote[] ;
        !            94: extern const char report_sender[] ;
        !            95: extern const char report_receiver[] ;
        !            96: 
        !            97: extern const char report_tcpInfo[] ;
        !            98: extern const char report_tcpInfo[] ;
        !            99: 
        !           100: 
        !           101: extern const char warn_window_requested[] ;
        !           102: extern const char warn_window_small[] ;
        !           103: extern const char warn_delay_large[] ;
        !           104: extern const char warn_no_pathmtu[] ;
        !           105: extern const char warn_no_ack[];
        !           106: extern const char warn_ack_failed[];
        !           107: extern const char warn_fileopen_failed[];
        !           108: extern const char unable_to_change_win[];
        !           109: extern const char opt_estimate[];
        !           110: extern const char report_interval_small[] ;
        !           111: extern const char warn_invalid_server_option[] ;
        !           112: extern const char warn_invalid_client_option[] ;
        !           113: extern const char warn_invalid_compatibility_option[] ;
        !           114: extern const char warn_implied_udp[] ;
        !           115: extern const char warn_implied_compatibility[] ;
        !           116: extern const char warn_buffer_too_small[] ;
        !           117: extern const char warn_invalid_single_threaded[] ;
        !           118: extern const char warn_invalid_report_style[] ;
        !           119: extern const char warn_invalid_report[] ;
        !           120: 
        !           121: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>