mirror of
https://github.com/transmission/transmission
synced 2024-12-29 02:56:11 +00:00
ecef0feb0c
* chore: enable cppcoreguidelines-slicing warning * chore: enable readability-named-parameter warning * chore: enable bugprone-reserved-identifier check * chore: enable bugprone-not-null-terminated-result check * chore: enable bugprone-sizeof-expression check * chore: enable bugprone-incorrect-roundings check * chore: enable misc-misplaced-const check * chore: enable bugprone-suspicious-include check * chore: enable bugprone-signed-char-misuse check * chore: enable modernize-raw-string-literal check * chore: enable readability-static-accessed-through-instance check * chore: enable readability-implicit-bool-conversion check * fixup! Merge branch 'main' into refactor/clang-tidy
17 lines
569 B
C
17 lines
569 B
C
// This file Copyright © 2010 Juliusz Chroboczek.
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#ifndef __TRANSMISSION__
|
|
#error only libtransmission should #include this header.
|
|
#endif
|
|
|
|
#include <cstddef> // size_t
|
|
|
|
bool tr_utpPacket(unsigned char const* buf, size_t buflen, struct sockaddr const* from, socklen_t fromlen, tr_session* ss);
|
|
|
|
void tr_utpClose(tr_session*);
|
|
|
|
void tr_utpSendTo(void* closure, unsigned char const* buf, size_t buflen, struct sockaddr const* to, socklen_t tolen);
|