Sponsored Content
Full Discussion: Unix terminal protocol
Top Forums UNIX for Dummies Questions & Answers Unix terminal protocol Post 21920 by de2934 on Friday 24th of May 2002 09:07:39 AM
Old 05-24-2002
Bug

Thank you for your help.
 

8 More Discussions You Might Find Interesting

1. IP Networking

UNIX and SNA protocol

Can anyone tell me how I can find out if a server has a SNA connection to a mainframe ? I need to find out at my work which servers use SNA by telnetting to that server and search for it, I just don't know what and where to look for... Any help appreciated ! Ron (2 Replies)
Discussion started by: ronw
2 Replies

2. UNIX for Advanced & Expert Users

connecting to unix through hyper terminal - as a dumb terminal

I just changed from windows NT to XP and I am no longer able to connect to my unix system. I used to use hyper terminal -- which acts as dumb terminal to my main frame unix system. I think one of the options used to be "direct to comX". This option isn't listed now. I use a serial port and the... (2 Replies)
Discussion started by: michelle
2 Replies

3. UNIX for Advanced & Expert Users

http protocol from UNIX

Is there any way to access http page from UNIX command line.... eg: http://www.abc.xyz (5 Replies)
Discussion started by: bishweshwar
5 Replies

4. UNIX for Advanced & Expert Users

GPRS Tunnelling Protocol implementation under UNIX

I need to implement a program that sends CDRs (just some data) over GTP' (GTP Prime - one of the GPRS Tunnelling Protocols, http://en.wikipedia.org/wiki/GPRS_Tunnelling_Protocol). Does anybody know where I can find GTP implementation? I'v tryed OpenGGSN (http://sourceforge.net/projects/ggsn/), but... (4 Replies)
Discussion started by: Hitori
4 Replies

5. SCO

How to stop A UDP protocol on Unix

Dear All, Kindly guide how to stop UDP protocol on Sco Unix release 5.0 Regards (2 Replies)
Discussion started by: sak900354
2 Replies

6. HP-UX

boot a unix terminal

I issued a halt command to a remote unix terminal and it shut down with root user through putty. Is there a way to start it back on? (3 Replies)
Discussion started by: mevoid
3 Replies

7. Shell Programming and Scripting

How to get Unix terminal in windows

Hi, How to get unix look and feel in windows environment where i can execute basic commands like date and complex usage like awk, sed etc and not much storage space is needed. Is there any software that i can install to use the same? Thanks, (3 Replies)
Discussion started by: i.srini89
3 Replies

8. Shell Programming and Scripting

What kind of transfer protocol we have in UNIX?

I was asked this question on the interview. I know ftp, sftp, scp, rcp. They said one more indi or indy Could you please let me know it? Thanks, Oleg (2 Replies)
Discussion started by: digioleg54
2 Replies
UNIX(7P)																  UNIX(7P)

NAME
UNIX - local communication domain protocol SYNOPSIS
DESCRIPTION
The local communication domain protocol, commonly referred to in the industry as the Unix domain protocol, utilizes the path name address format and the address family. This protocol can be used as an alternative to the Internet protocol family (TCP/IP or UDP/IP) for communi- cation between processes executing on the same node. It has a significant throughput advantage when compared with local IP loopback, due primarily to its much lower code execution overhead. Data is looped back at the protocol layer (OSI Level 4), rather than at the driver layer (OSI Level 2). Only is supported in the address family. The HP-UX implementation of the local communication domain protocol does not support the flag in (see recv(2)) and (see send(2)). Addressing socket addresses are path names. They are limited to 92 bytes in length, including a terminating null byte. Calls to to an socket utilize an addressing structure called (see bind(2)). Pointers to this structure should be used in all socket system calls wherever they require a pointer to a The include file defines this addressing structure. Within this structure are two notable fields. The first is sun_family, which must be set to The next is sun_path, which is the null-terminated character string that specifies the path name of the file associated with the socket (for example, Only the passive (listening) socket must bind to an address. The active socket connects to that address, but it does not need an address of its own. For additional information on using sockets for interprocess communication, refer to the BSD Sockets Interface Programmer's Guide. Socket Buffer Size For stream and datagram sockets, the maximum send and receive buffer size is 262142 bytes. The default buffer size is 32768 bytes. The send and receive buffer sizes can be altered by using the and options of the system call. Refer to getsockopt(2) for details. AUTHOR
was developed by the University of California, Berkeley. SEE ALSO
getsockopt(2), socket(2). UNIX(7P)
All times are GMT -4. The time now is 07:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy