Ignore:
File:
1 edited

Legend:

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

    r4e5c7ba r89e57cee  
    5959typedef struct tcp_header tcp_header_t;
    6060
     61/** Type definition of the transmission datagram header pointer.
     62 * @see tcp_header
     63 */
     64typedef tcp_header_t *tcp_header_ref;
     65
    6166/** Type definition of the transmission datagram header option.
    6267 * @see tcp_option
     
    6469typedef struct tcp_option tcp_option_t;
    6570
     71/** Type definition of the transmission datagram header option pointer.
     72 * @see tcp_option
     73 */
     74typedef tcp_option_t *tcp_option_ref;
     75
    6676/** Type definition of the Maximum segment size TCP option. */
    6777typedef struct tcp_max_segment_size_option tcp_max_segment_size_option_t;
     78
     79/** Type definition of the Maximum segment size TCP option pointer.
     80 * @see tcp_max_segment_size_option
     81 */
     82typedef tcp_max_segment_size_option_t *tcp_max_segment_size_option_ref;
    6883
    6984/** Transmission datagram header. */
Note: See TracChangeset for help on using the changeset viewer.