Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/tcp.h

    r89e57cee r46d4d9f  
    5555typedef struct tcp_socket_data tcp_socket_data_t;
    5656
    57 /** Type definition of the TCP socket specific data pointer.
    58  * @see tcp_socket_data
    59  */
    60 typedef tcp_socket_data_t *tcp_socket_data_ref;
    61 
    6257/** Type definition of the TCP operation data.
    6358 * @see tcp_operation
    6459 */
    6560typedef struct tcp_operation tcp_operation_t;
    66 
    67 /** Type definition of the TCP operation data pointer.
    68  * @see tcp_operation
    69  */
    70 typedef tcp_operation_t *tcp_operation_ref;
    7161
    7262/** TCP socket state type definition.
     
    249239         * Packets metric is set as their data length.
    250240         */
    251         packet_t incoming;
     241        packet_t *incoming;
    252242       
    253243        /** Outgoing packet queue.
     
    259249         * Packets metric is set as their data length.
    260250         */
    261         packet_t outgoing;
     251        packet_t *outgoing;
    262252       
    263253        /** IP pseudo header. */
     
    272262        uint16_t dest_port;
    273263        /** Parent local sockets. */
    274         socket_cores_ref local_sockets;
     264        socket_cores_t *local_sockets;
    275265       
    276266        /** Local sockets safety lock.
Note: See TracChangeset for help on using the changeset viewer.