You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.ts 399B

123456789101112
  1. /**
  2. * The know jingle actions that can be sent and should be acted upon by
  3. * {@code ProxyConnectionService} and {@code ProxyConnectionPC}.
  4. */
  5. export enum ACTIONS {
  6. ACCEPT = 'session-accept',
  7. CONNECTION_ERROR = 'connection-error-encountered',
  8. INITIATE = 'session-initiate',
  9. TERMINATE = 'session-terminate',
  10. TRANSPORT_INFO = 'transport-info',
  11. UNAVAILABLE = 'unavailable'
  12. };