Prefix HAVE_SCTP macro with WEBRTC_.

Generated automatically with:

  git grep -l "\bHAVE_SCTP\b" | xargs \
    sed -i '' 's/HAVE_SCTP/WEBRTC_HAVE_SCTP/g'

Bug: webrtc:11142
Change-Id: I30e16a40ca7a7e388940191df22b705265b42cb4
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/202251
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33042}
This commit is contained in:
Mirko Bonadei
2021-01-18 13:24:40 +01:00
committed by Commit Bot
parent 6dcbcead3d
commit 5eb43b4777
11 changed files with 26 additions and 26 deletions

View File

@ -465,7 +465,7 @@ TEST_P(PeerConnectionEndToEndTest, CallWithCustomCodec) {
EXPECT_NE(encoder_id1, encoder_id2);
}
#ifdef HAVE_SCTP
#ifdef WEBRTC_HAVE_SCTP
// Verifies that a DataChannel created before the negotiation can transition to
// "OPEN" and transfer data.
TEST_P(PeerConnectionEndToEndTest, CreateDataChannelBeforeNegotiate) {
@ -735,7 +735,7 @@ TEST_P(PeerConnectionEndToEndTest, TooManyDataChannelsOpenedBeforeConnecting) {
channels[cricket::kMaxSctpStreams / 2]->state());
}
#endif // HAVE_SCTP
#endif // WEBRTC_HAVE_SCTP
TEST_P(PeerConnectionEndToEndTest, CanRestartIce) {
rtc::scoped_refptr<webrtc::AudioDecoderFactory> real_decoder_factory =