- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Socket communication in HPUX
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2001 08:05 PM
06-07-2001 08:05 PM
Socket communication in HPUX
Is there any kernel parameter can be set forcontrol the socket transaction or it depend on the application itself ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2001 02:09 AM
06-08-2001 02:09 AM
Re: Socket communication in HPUX
I'm not quite sure for what you're looking. The application defines the socket properties such as IP address and port number.
There are TCP/IP timing parameters that control the birth-and-death cycle of a connecton. Take a look at the man pages for 'ndd'. For instance to see all TCP related parameters, do:
# ndd -get /dev/tcp ?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2001 02:26 AM
06-08-2001 02:26 AM
Re: Socket communication in HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2001 07:34 AM
06-08-2001 07:34 AM
Re: Socket communication in HPUX
As James mentioned a few of the parameters are set at the kernel/driver level but the vast majority is done at the application level.
e.g. Blocking vs. Non-blocking I/O, Connection Oriented Service vs Connectionless Service.
If you can be a bit more specific in your question, perhaps a better answer can be provided.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2001 07:13 AM
06-12-2001 07:13 AM
Re: Socket communication in HPUX
Sockets programs control their own fate in general, just like a program that writes to any file (a socket is generally just another file descriptor). man setsockopt(2) for more specifics, and also look at the example programs on any HPUX system in:
/usr/lib/demos/networking/socket
Reference: "Unix Network Programming" by Stevens. Also http://docs.hp.com -> Networking/Communications -> LAN/9000 -> BSD Sockets Interface Programmer's Guide
Hope this helps,
-> Brian Hackley