talkd.h (e4478d7e46876142b5f75cfc93ef649a6bde05ae) | talkd.h (ce7db385f50a29e73170c4e7cedfe4706bba34fc) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1983, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 42 unchanged lines hidden (view full) --- 51 * contact. When the callee responds, the local server uses the 52 * recorded invitation to respond with the appropriate rendezvous 53 * address and the caller and callee client programs establish a 54 * stream connection through which the conversation takes place. 55 */ 56 57/* 58 * The talk protocol embeds a 4.3BSD sockaddr. Define our own version | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1983, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 42 unchanged lines hidden (view full) --- 51 * contact. When the callee responds, the local server uses the 52 * recorded invitation to respond with the appropriate rendezvous 53 * address and the caller and callee client programs establish a 54 * stream connection through which the conversation takes place. 55 */ 56 57/* 58 * The talk protocol embeds a 4.3BSD sockaddr. Define our own version |
59 * rather then relying on namespace polution in kernel headers. | 59 * rather then relying on namespace pollution in kernel headers. |
60 */ 61struct tsockaddr { 62 unsigned short sa_family; 63 char sa_data[14]; 64}; 65 66/* 67 * Client->server request message format. --- 56 unchanged lines hidden --- | 60 */ 61struct tsockaddr { 62 unsigned short sa_family; 63 char sa_data[14]; 64}; 65 66/* 67 * Client->server request message format. --- 56 unchanged lines hidden --- |