| 233 | } |
| 234 | |
| 235 | uint8_t* CPacket::GetUDPHeader() { |
| 236 | wxASSERT( !m_bSplitted ); |
| 237 | |
| 238 | memset(head, 0, 6); |
| 239 | UDP_Header_Struct* header = reinterpret_cast<UDP_Header_Struct*>(head); |
| 240 | header->eDonkeyID = prot; |
| 241 | header->command = opcode; |
| 242 | |
| 243 | return head; |
| 244 | } |
| 245 | |
| 246 | |
| 247 | void CPacket::PackPacket() |
no outgoing calls
no test coverage detected