| 104 | } |
| 105 | |
| 106 | void |
| 107 | UDPConnection::bindToThread(Continuation *c, EThread *t) |
| 108 | { |
| 109 | UnixUDPConnection *uc = static_cast<UnixUDPConnection *>(this); |
| 110 | ink_assert(t); |
| 111 | ink_assert(get_UDPNetHandler(t)); |
| 112 | uc->ethread = t; |
| 113 | AddRef(); |
| 114 | uc->continuation = c; |
| 115 | mutex = c->mutex; |
| 116 | get_UDPNetHandler(t)->newconn_list.push(uc); |
| 117 | } |
| 118 | |
| 119 | Action * |
| 120 | UDPConnection::send(Continuation *c, UDPPacket *p) |
no test coverage detected