Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/inetsrv.h

    r1c7ba2d r1d24ad3  
    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.