The Trunk: Network-ul.135.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Network-ul.135.mcz

commits-2
Levente Uzonyi uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-ul.135.mcz

==================== Summary ====================

Name: Network-ul.135
Author: ul
Time: 15 August 2012, 5:29:17.02 pm
UUID: 13fea461-bd99-2b47-8592-8f7a11676f4f
Ancestors: Network-dtl.134

- fix: Socket >> #remoteSocketAddress shouldn't send #asSocketAddress if #useOldNetwork is true

=============== Diff against Network-dtl.134 ===============

Item was changed:
  ----- Method: Socket>>remoteSocketAddress (in category 'ipv6') -----
  remoteSocketAddress
 
  NetNameResolver useOldNetwork
+ ifTrue: [ ^self primSocketRemoteAddress: socketHandle ]
- ifTrue: [^(self primSocketRemoteAddress: socketHandle) asSocketAddress]
  ifFalse: [
  | size addr |
  size := self primSocketRemoteAddressSize: socketHandle.
  addr := SocketAddress new: size.
  self primSocket: socketHandle remoteAddressResult: addr.
  ^addr]!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: Network-ul.135.mcz

Frank Shearar-3
On 15 August 2012 17:57,  <[hidden email]> wrote:

> Levente Uzonyi uploaded a new version of Network to project The Trunk:
> http://source.squeak.org/trunk/Network-ul.135.mcz
>
> ==================== Summary ====================
>
> Name: Network-ul.135
> Author: ul
> Time: 15 August 2012, 5:29:17.02 pm
> UUID: 13fea461-bd99-2b47-8592-8f7a11676f4f
> Ancestors: Network-dtl.134
>
> - fix: Socket >> #remoteSocketAddress shouldn't send #asSocketAddress if #useOldNetwork is true
>
> =============== Diff against Network-dtl.134 ===============

CI's happy with testPeerName!

frank

Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: Network-ul.135.mcz

Levente Uzonyi-2
On Wed, 15 Aug 2012, Frank Shearar wrote:

> On 15 August 2012 17:57,  <[hidden email]> wrote:
>> Levente Uzonyi uploaded a new version of Network to project The Trunk:
>> http://source.squeak.org/trunk/Network-ul.135.mcz
>>
>> ==================== Summary ====================
>>
>> Name: Network-ul.135
>> Author: ul
>> Time: 15 August 2012, 5:29:17.02 pm
>> UUID: 13fea461-bd99-2b47-8592-8f7a11676f4f
>> Ancestors: Network-dtl.134
>>
>> - fix: Socket >> #remoteSocketAddress shouldn't send #asSocketAddress if #useOldNetwork is true
>>
>> =============== Diff against Network-dtl.134 ===============
>
> CI's happy with testPeerName!

Dave fixed it. :)


Levente

>
> frank
>
>