getservbyname

2012-04-02 Thread Jörg Schaible
Guys,

do we have somewhere an equivalent for the C system call getservbyname in 
commons?

- Jörg


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: getservbyname

2012-04-02 Thread Emmanuel Bourg

Le 02/04/2012 16:41, Jörg Schaible a écrit :


do we have somewhere an equivalent for the C system call getservbyname in
commons?


You mean something that map a service name (http, ssh) to a port number 
(80, 22) ?


Emmanuel Bourg



smime.p7s
Description: S/MIME Cryptographic Signature


Re: getservbyname

2012-04-02 Thread Jörg Schaible
Hi Emmanuel,

Emmanuel Bourg wrote:

 Le 02/04/2012 16:41, Jörg Schaible a écrit :
 
 do we have somewhere an equivalent for the C system call getservbyname in
 commons?
 
 You mean something that map a service name (http, ssh) to a port number
 (80, 22) ?

Right. Best would be a system call, but I can also live with some 
functionality that parses the etc/services in Linux/Windows directly. For 
support in the Java runtime I only found a 15 year old enhancement request 
in Oracles Bugzilla ... :-/

- Jörg


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: getservbyname

2012-04-02 Thread sebb
On 2 April 2012 17:13, Jörg Schaible joerg.schai...@gmx.de wrote:
 Hi Emmanuel,

 Emmanuel Bourg wrote:

 Le 02/04/2012 16:41, Jörg Schaible a écrit :

 do we have somewhere an equivalent for the C system call getservbyname in
 commons?

 You mean something that map a service name (http, ssh) to a port number
 (80, 22) ?

 Right. Best would be a system call, but I can also live with some
 functionality that parses the etc/services in Linux/Windows directly. For
 support in the Java runtime I only found a 15 year old enhancement request
 in Oracles Bugzilla ... :-/

It looks as though Tomcat Native has access to the C routine via JNI,
but it would be nice to have a pure Java implementation.

Sounds like a suitable enhancement for Commons NET?

 - Jörg


 -
 To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
 For additional commands, e-mail: user-h...@commons.apache.org


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: getservbyname

2012-04-02 Thread Emmanuel Bourg

Le 02/04/2012 18:13, Jörg Schaible a écrit :


Right. Best would be a system call, but I can also live with some
functionality that parses the etc/services in Linux/Windows directly. For
support in the Java runtime I only found a 15 year old enhancement request
in Oracles Bugzilla ... :-/


It should be easy to do this in a platform independent manner by parsing 
the IANA port database:


http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml

That's the authoritative source for port names.

Emmanuel Bourg



smime.p7s
Description: S/MIME Cryptographic Signature


Re: getservbyname

2012-04-02 Thread Jörg Schaible
Hi Emmanual,

Emmanuel Bourg wrote:

 Le 02/04/2012 18:13, Jörg Schaible a écrit :
 
 Right. Best would be a system call, but I can also live with some
 functionality that parses the etc/services in Linux/Windows directly. For
 support in the Java runtime I only found a 15 year old enhancement
 request in Oracles Bugzilla ... :-/
 
 It should be easy to do this in a platform independent manner by parsing
 the IANA port database:
 
 http://www.iana.org/assignments/service-names-port-numbers/service-names-
port-numbers.xml
 
 That's the authoritative source for port names.

This is useless, you will need the current settings of the system. It is not 
uncommon in large companies to modify the official mappings, remove 
unwanted or add private ones.

- Jörg


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org