setProtocol method
Sets the protocol for this stream
Implementation
@override
Future<void> setProtocol(String id) async {
// DEBUG: Add protocol assignment tracking
_log.warning('🔍 [YAMUX-STREAM-PROTOCOL-ASSIGN] Stream ID=$streamId, assigning_protocol=$id, previous_protocol=$streamProtocol');
streamProtocol = id;
_log.warning('🔍 [YAMUX-STREAM-PROTOCOL-ASSIGN-COMPLETE] Stream ID=$streamId, final_protocol=$streamProtocol');
}