Ignore:
File:
1 edited

Legend:

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

    r46d4d9f r89e57cee  
    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 */
     60typedef tcp_socket_data_t *tcp_socket_data_ref;
     61
    5762/** Type definition of the TCP operation data.
    5863 * @see tcp_operation
    5964 */
    6065typedef struct tcp_operation tcp_operation_t;
     66
     67/** Type definition of the TCP operation data pointer.
     68 * @see tcp_operation
     69 */
     70typedef tcp_operation_t *tcp_operation_ref;
    6171
    6272/** TCP socket state type definition.
     
    239249         * Packets metric is set as their data length.
    240250         */
    241         packet_t *incoming;
     251        packet_t incoming;
    242252       
    243253        /** Outgoing packet queue.
     
    249259         * Packets metric is set as their data length.
    250260         */
    251         packet_t *outgoing;
     261        packet_t outgoing;
    252262       
    253263        /** IP pseudo header. */
     
    262272        uint16_t dest_port;
    263273        /** Parent local sockets. */
    264         socket_cores_t *local_sockets;
     274        socket_cores_ref local_sockets;
    265275       
    266276        /** Local sockets safety lock.
Note: See TracChangeset for help on using the changeset viewer.