Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa5ec098 authored by Benedict Wong's avatar Benedict Wong Committed by android-build-merger
Browse files

Merge "Add EPROTONOSUPPORT to IpSecManager SSE map"

am: 7050ce94

Change-Id: I9ab4161e2b04615ce782c89cd9e99d98cdbdc92d
parents b9e515c3 7050ce94
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -941,7 +941,8 @@ public final class IpSecManager {
            throw new IllegalArgumentException(sse);
        } else if (sse.errorCode == OsConstants.EAGAIN) {
            throw new IllegalStateException(sse);
        } else if (sse.errorCode == OsConstants.EOPNOTSUPP) {
        } else if (sse.errorCode == OsConstants.EOPNOTSUPP
                || sse.errorCode == OsConstants.EPROTONOSUPPORT) {
            throw new UnsupportedOperationException(sse);
        }
    }