Changeset ff381a7 in mainline for uspace/srv/net/udp/udp_type.h


Ignore:
Timestamp:
2015-11-02T20:54:19Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8513177
Parents:
3feeab2 (diff), 5265eea4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/udp/udp_type.h

    r3feeab2 rff381a7  
    4646#define UDP_FRAGMENT_SIZE 65535
    4747
     48/** UDP error codes */
    4849typedef enum {
    4950        UDP_EOK,
     
    8485} udp_pdu_t;
    8586
     87/** Association callbacks */
    8688typedef struct {
     89        /** Message received */
    8790        void (*recv_msg)(void *, inet_ep2_t *, udp_msg_t *);
    8891} udp_assoc_cb_t;
     
    124127} udp_assoc_status_t;
    125128
     129/** UDP receive queue entry */
    126130typedef struct {
    127131        /** Link to receive queue */
     
    133137} udp_rcv_queue_entry_t;
    134138
     139/** UDP client association.
     140 *
     141 * Ties a UDP association into the namespace of a client
     142 */
    135143typedef struct udp_cassoc {
    136144        /** Association */
     
    143151} udp_cassoc_t;
    144152
     153/** UDP client receive queue entry */
    145154typedef struct {
    146155        /** Link to receive queue */
     
    154163} udp_crcv_queue_entry_t;
    155164
     165/** UDP client */
    156166typedef struct udp_client {
    157167        /** Client callback session */
Note: See TracChangeset for help on using the changeset viewer.