~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to uspace/srv/net/udp/udp_type.h

  • Committer: Jiri Svoboda
  • Date: 2012-08-13 10:40:17 UTC
  • Revision ID: jiri@wiwaxia-20120813104017-t9y6pdrjuky39557
Terminate UDP receive fibril when socket is closed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        /* Foreign socket unspecified */
51
51
        UDP_EUNSPEC,
52
52
        /* No route to destination */
53
 
        UDP_ENOROUTE
 
53
        UDP_ENOROUTE,
 
54
        /** Association reset by user */
 
55
        UDP_ERESET
54
56
} udp_error_t;
55
57
 
56
58
typedef enum {
118
120
        /** Association identification (local and foreign socket) */
119
121
        udp_sockpair_t ident;
120
122
 
 
123
        /** True if association was reset by user */
 
124
        bool reset;
 
125
 
121
126
        /** True if association was deleted by user */
122
127
        bool deleted;
123
128