Changeset 98abd40 in mainline for uspace/srv/net/inetsrv/inetsrv.h


Ignore:
Timestamp:
2013-07-06T21:57:22Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c8bb1633, cdc8a391
Parents:
b8e72fd1 (diff), 507c6f3 (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/inetsrv/inetsrv.h

    rb8e72fd1 r98abd40  
    6363} inetping_client_t;
    6464
     65/** Inetping6 Client */
     66typedef struct {
     67        /** Callback session */
     68        async_sess_t *sess;
     69        /** Session identifier */
     70        uint16_t ident;
     71        /** Link to client list */
     72        link_t client_list;
     73} inetping6_client_t;
     74
    6575/** Address object info */
    6676typedef struct {
     
    172182
    173183typedef struct {
    174         inet_addr_t src;
    175         inet_addr_t dest;
     184        uint32_t src;
     185        uint32_t dest;
    176186        uint16_t seq_no;
    177187        void *data;
    178188        size_t size;
    179189} inetping_sdu_t;
     190
     191typedef struct {
     192        addr128_t src;
     193        addr128_t dest;
     194        uint16_t seq_no;
     195        void *data;
     196        size_t size;
     197} inetping6_sdu_t;
    180198
    181199extern int inet_ev_recv(inet_client_t *, inet_dgram_t *);
Note: See TracChangeset for help on using the changeset viewer.