1. NAME

struct_sock_common - minimal network layer representation of sockets

2. SYNOPSIS



 
Sélectionnez
struct sock_common {
  union {unnamed_union};
  int skc_tx_queue_mapping;
  atomic_t skc_refcnt;
};

3. MEMBERS

{unnamed_union}
    anonymous

skc_tx_queue_mapping
    tx queue number for this connection

skc_refcnt
    reference count

4. DESCRIPTION

This is the minimal network layer representation of sockets, the header for struct sock and struct inet_timewait_sock.

5. COPYRIGHT