Changeset 779541b in mainline for uspace/lib/c/include/inet/udp.h


Ignore:
Timestamp:
2015-05-09T13:43:50Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1d4b815
Parents:
99ea91b2
Message:

TCP transport layer API - somewhat working.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/inet/udp.h

    r99ea91b2 r779541b  
    4141#include <inet/inet.h>
    4242
     43/** UDP link state */
    4344typedef enum {
    4445        udp_ls_down,
     
    4647} udp_link_state_t;
    4748
     49/** UDP received message */
    4850typedef struct {
    4951        struct udp *udp;
     
    5355} udp_rmsg_t;
    5456
     57/** UDP received error */
    5558typedef struct {
    5659} udp_rerr_t;
    5760
     61/** UDP association */
    5862typedef struct {
    5963        struct udp *udp;
     
    6468} udp_assoc_t;
    6569
     70/** UDP callbacks */
    6671typedef struct udp_cb {
    6772        void (*recv_msg)(udp_assoc_t *, udp_rmsg_t *);
     
    7075} udp_cb_t;
    7176
     77/** UDP service */
    7278typedef struct udp {
    7379        /** UDP session */
Note: See TracChangeset for help on using the changeset viewer.