Changeset eb522e8 in mainline for uspace/srv/net/tl/tcp/tcp.h


Ignore:
Timestamp:
2011-06-01T08:43:42Z (14 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d6c1f1
Parents:
9e2e715 (diff), e51a514 (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:

Huuuuuge merge from development - all the work actually :)

File:
1 edited

Legend:

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

    r9e2e715 reb522e8  
    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.
     
    200190        int backlog;
    201191       
    202 //      /** Segment size. */
    203 //      size_t segment_size;
    204 
    205192        /**
    206193         * Parent listening socket identifier.
     
    249236         * Packets metric is set as their data length.
    250237         */
    251         packet_t incoming;
     238        packet_t *incoming;
    252239       
    253240        /** Outgoing packet queue.
     
    259246         * Packets metric is set as their data length.
    260247         */
    261         packet_t outgoing;
     248        packet_t *outgoing;
    262249       
    263250        /** IP pseudo header. */
     
    272259        uint16_t dest_port;
    273260        /** Parent local sockets. */
    274         socket_cores_ref local_sockets;
     261        socket_cores_t *local_sockets;
    275262       
    276263        /** Local sockets safety lock.
Note: See TracChangeset for help on using the changeset viewer.