-
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mikael Wills
committed
Apr 23, 2024
1 parent
d4c0a5b
commit 425ec98
Showing
31 changed files
with
563 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/// only expose the bare minimum of internals required | ||
export 'src/enum_helper.dart'; | ||
export 'src/sip_ua_helper.dart'; | ||
export 'src/transport_type.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
import '../transports/websocket_interface.dart'; | ||
import 'package:sip_ua/src/transports/socket_interface.dart'; | ||
import '../transports/web_socket.dart'; | ||
import 'events.dart'; | ||
|
||
class EventSocketConnected extends EventType { | ||
EventSocketConnected({this.socket}); | ||
WebSocketInterface? socket; | ||
SIPUASocketInterface? socket; | ||
} | ||
|
||
class EventSocketConnecting extends EventType { | ||
EventSocketConnecting({this.socket}); | ||
WebSocketInterface? socket; | ||
SIPUASocketInterface? socket; | ||
} | ||
|
||
class EventSocketDisconnected extends EventType { | ||
EventSocketDisconnected({WebSocketInterface? socket, this.cause}); | ||
WebSocketInterface? socket; | ||
EventSocketDisconnected({SIPUASocketInterface? socket, this.cause}); | ||
SIPUASocketInterface? socket; | ||
ErrorCause? cause; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.