-
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Mikael Wills <[email protected]>
- Loading branch information
1 parent
ec66172
commit 024d0e8
Showing
32 changed files
with
574 additions
and
218 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
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
Oops, something went wrong.