smalltalk
/
osmo-st-sip
Archived
1
0
Fork 0

pharo: Allow converting the authorization message as well

We need >>#do: as nextPutAllOn: is not called/doesn't exist in
this dialect.
This commit is contained in:
Holger Hans Peter Freyther 2015-07-24 12:13:38 +02:00
parent d00bcc74a4
commit 21d395593e
1 changed files with 4 additions and 0 deletions

View File

@ -103,6 +103,10 @@ Object subclass: SIPAuthorization [
url: uri.
]
do: aBlock [
(String streamContents: [:str | self nextPutAllOn: str]) do: aBlock
]
nextPutAllOn: aStream [
aStream
nextPutAll: 'Digest username="';