:orphan: .. index:: pair: struct; sendq_s .. _doxid-structsendq__s: struct sendq_s ============== .. toctree:: :hidden: Overview ~~~~~~~~ Send queue structure. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct sendq_s { // fields :ref:`sendq_entry_t`* :ref:`head`; :ref:`sendq_entry_t`* :ref:`tail`; int :ref:`id`; pthread_t :ref:`send_thread`; :ref:`csap_p` :ref:`csap`; pthread_mutex_t :ref:`sendq_lock`; int :ref:`sendq_sync_sockets`[2]; int :ref:`queue_size_max`; int :ref:`queue_size`; int :ref:`queue_bandwidth`; struct timeval :ref:`bandwidth_ts`; }; .. _details-structsendq__s: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Send queue structure. Packets from the tail of the queue should be sent first Fields ------ .. index:: pair: variable; head .. _doxid-structsendq__s_1a3cd67df2c6557803b41b90f369488751: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`sendq_entry_t`* head head of the queue .. index:: pair: variable; tail .. _doxid-structsendq__s_1a91177041e1653fa353e3acd8501626e7: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`sendq_entry_t`* tail tail of the queue .. index:: pair: variable; id .. _doxid-structsendq__s_1aa4f71a42fc1985465dab514fbaff76b3: .. ref-code-block:: cpp :class: doxyrest-title-code-block int id Unique send queue identifier .. index:: pair: variable; send_thread .. _doxid-structsendq__s_1a10abb1c90cd425cad8f3a0e0a5bbf964: .. ref-code-block:: cpp :class: doxyrest-title-code-block pthread_t send_thread sending thread id .. index:: pair: variable; csap .. _doxid-structsendq__s_1a0677a7fcf472a28c226198bbc6d2770a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`csap_p` csap csap used by this sendq to send data .. index:: pair: variable; sendq_lock .. _doxid-structsendq__s_1a9c790e36d61b882727517415429f16a8: .. ref-code-block:: cpp :class: doxyrest-title-code-block pthread_mutex_t sendq_lock mutex lock for the shared data .. index:: pair: variable; sendq_sync_sockets .. _doxid-structsendq__s_1a6448c0c61a51c31319db41087ae60de9: .. ref-code-block:: cpp :class: doxyrest-title-code-block int sendq_sync_sockets[2] pipe for sync of threads .. index:: pair: variable; queue_size_max .. _doxid-structsendq__s_1a0c5cbe57f69d33254ec996a850390620: .. ref-code-block:: cpp :class: doxyrest-title-code-block int queue_size_max queue max size .. index:: pair: variable; queue_size .. _doxid-structsendq__s_1ab48a38b470c0aad5e14201b80fad639d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int queue_size queue current size .. index:: pair: variable; queue_bandwidth .. _doxid-structsendq__s_1a49790eacc177eeeef868eb0eccf54248: .. ref-code-block:: cpp :class: doxyrest-title-code-block int queue_bandwidth sendq bandwidth .. index:: pair: variable; bandwidth_ts .. _doxid-structsendq__s_1ab1a160e7708edc3db0de210bb2782f1c: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct timeval bandwidth_ts bandwidth timestamp