import { useBackend } from '../backend'; import { Button, Box, Icon, LabeledList, Section } from '../components'; import { Window } from '../layouts'; import { FullscreenNotice } from './common/FullscreenNotice'; export const NTNetRelay = (props, context) => { const { act, data } = useBackend(context); const { dos_crashed, enabled, dos_overload, dos_capacity } = data; let body = ; if (dos_crashed) { body = ; } return ( {body} ); }; const NTNetRelayContent = (props, context) => { const { act, data } = useBackend(context); const { dos_crashed, enabled, dos_overload, dos_capacity } = data; return (
act('toggle')} /> }> {dos_overload} / {dos_capacity} GQ
); }; const NTNetRelayCrash = (props, context) => { const { act, data } = useBackend(context); return (

NETWORK BUFFERS OVERLOADED

Overload Recovery Mode

This system is suffering temporary outage due to overflow of traffic buffers. Until buffered traffic is processed, all further requests will be dropped. Frequent occurences of this error may indicate insufficient hardware capacity of your network. Please contact your network planning department for instructions on how to resolve this issue.

ADMINISTRATIVE OVERRIDE

CAUTION - Data loss may occur