Issue 3688 in pharo: Network primitives missing in the image

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

Issue 3688 in pharo: Network primitives missing in the image

pharo
Status: Accepted
Owner: [hidden email]
Labels: Difficulty-Easy

New issue 3688 by [hidden email]: Network primitives missing in the  
image
http://code.google.com/p/pharo/issues/detail?id=3688

There are some primitives missing in Pharo, there are in eToys.
Maybe we can include them


primGetAddressInfoFamily

        <primitive: 'primitiveResolverGetAddressInfoFamily' module: 'SocketPlugin'>
        self primitiveFailed
===

primGetAddressInfoHost: hostName service: servName flags: flags family:  
family type: type protocol: protocol

        <primitive: 'primitiveResolverGetAddressInfo' module: 'SocketPlugin'>
        self primitiveFailed
===

primGetAddressInfoNext

        <primitive: 'primitiveResolverGetAddressInfoNext' module: 'SocketPlugin'>
        self primitiveFailed
===

primGetAddressInfoProtocol

        <primitive: 'primitiveResolverGetAddressInfoProtocol'  
module: 'SocketPlugin'>
        self primitiveFailed
===

primGetAddressInfoResult: socketAddress

        <primitive: 'primitiveResolverGetAddressInfoResult' module: 'SocketPlugin'>
        self primitiveFailed
===

primGetAddressInfoSize

        <primitive: 'primitiveResolverGetAddressInfoSize' module: 'SocketPlugin'>
        self primitiveFailed
===

primGetAddressInfoType

        <primitive: 'primitiveResolverGetAddressInfoType' module: 'SocketPlugin'>
        self primitiveFailed
===
primGetNameInfo: socketAddress flags: flags

  <primitive: 'primitiveResolverGetNameInfo' module: 'SocketPlugin'>
  flags == 0 ifTrue: [^self primGetNameInfo: socketAddress
  flags: SocketAddressInformation numericFlag].
  self primitiveFailed
===
primGetNameInfoHostResult: aString

  <primitive: 'primitiveResolverGetNameInfoHostResult'  
module: 'SocketPlugin'>
  self primitiveFailed
===
primGetNameInfoHostSize

  <primitive: 'primitiveResolverGetNameInfoHostSize' module: 'SocketPlugin'>
  self primitiveFailed
===
primGetNameInfoServiceResult: aString

  <primitive: 'primitiveResolverGetNameInfoServiceResult'  
module: 'SocketPlugin'>
  self primitiveFailed
===
primGetNameInfoServiceSize

  <primitive: 'primitiveResolverGetNameInfoServiceSize'  
module: 'SocketPlugin'>
  self primitiveFailed
===
primHostNameResult: aString

  <primitive: 'primitiveResolverHostNameResult' module: 'SocketPlugin'>
  self primitiveFailed
===
primHostNameSize

  <primitive: 'primitiveResolverHostNameSize' module: 'SocketPlugin'>
  self primitiveFailed



Reply | Threaded
Open this post in threaded view
|

Re: Issue 3688 in pharo: Network primitives missing in the image

pharo
Updates:
        Status: Fixed

Comment #1 on issue 3688 by [hidden email]: Network primitives  
missing in the image
http://code.google.com/p/pharo/issues/detail?id=3688

jannik gimme a cs :)


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3688 in pharo: Network primitives missing in the image

pharo

Comment #2 on issue 3688 by [hidden email]: Network primitives  
missing in the image
http://code.google.com/p/pharo/issues/detail?id=3688

This one cannot be included because of call to SocketAddressInformation


primGetNameInfo: socketAddress flags: flags

  <primitive: 'primitiveResolverGetNameInfo' module: 'SocketPlugin'>
  flags == 0 ifTrue: [^self primGetNameInfo: socketAddress
  flags: SocketAddressInformation numericFlag].
  self primitiveFailed


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3688 in pharo: Network primitives missing in the image

pharo
Updates:
        Cc: stephane.ducasse

Comment #3 on issue 3688 by [hidden email]: Network primitives  
missing in the image
http://code.google.com/p/pharo/issues/detail?id=3688

in PharoInbox, SLICE-Issue-3688-NetworkPrimitivesMissing-janniklaval.1


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3688 in pharo: Network primitives missing in the image

pharo
Updates:
        Status: Closed

Comment #4 on issue 3688 by [hidden email]: Network primitives  
missing in the image
http://code.google.com/p/pharo/issues/detail?id=3688

in 13045