Subversion Repositories HelenOS

Rev

Rev 4704 | Rev 4722 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4704 Rev 4707
Line 47... Line 47...
47
typedef struct udp_globals  udp_globals_t;
47
typedef struct udp_globals  udp_globals_t;
48
 
48
 
49
/** UDP global data.
49
/** UDP global data.
50
 */
50
 */
51
struct  udp_globals{
51
struct  udp_globals{
-
 
52
    /** Networking module phone.
-
 
53
     */
-
 
54
    int             net_phone;
52
    /** IP module phone.
55
    /** IP module phone.
53
     */
56
     */
54
    int             ip_phone;
57
    int             ip_phone;
-
 
58
    /** ICMP module phone.
-
 
59
     */
-
 
60
    int             icmp_phone;
55
    /** Reserved packet prefix length.
61
    /** Reserved packet prefix length.
56
     */
62
     */
57
    size_t              prefix;
63
    size_t          prefix;
58
    /** Maximal packet content length.
64
    /** Maximal packet content length.
59
     */
65
     */
60
    size_t              content;
66
    size_t          content;
61
    /** Reserved packet suffix length.
67
    /** Reserved packet suffix length.
62
     */
68
     */
63
    size_t              suffix;
69
    size_t          suffix;
64
    /** Packet address length.
70
    /** Packet address length.
65
     */
71
     */
66
    size_t              addr_len;
72
    size_t          addr_len;
67
    /** Networking module phone.
-
 
68
     */
-
 
69
    int             net_phone;
-
 
70
    /** Last used free port.
73
    /** Last used free port.
71
     */
74
     */
72
    int             last_used_port;
75
    int             last_used_port;
73
    /** Active sockets.
76
    /** Active sockets.
74
     */
77
     */