bearer.h (404c3bc30cb1361e1b3533643326ab472d24a618) | bearer.h (2c53040f018b6c36a46eec75b9b937aaa5f78e6d) |
---|---|
1/* 2 * net/tipc/bearer.h: Include file for TIPC bearer code 3 * 4 * Copyright (c) 1996-2006, Ericsson AB 5 * Copyright (c) 2005, 2010-2011, Wind River Systems 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 43 unchanged lines hidden (view full) --- 52#define TIPC_MEDIA_ADDR_SIZE 20 53#define TIPC_MEDIA_TYPE_OFFSET 3 54 55/* 56 * Identifiers of supported TIPC media types 57 */ 58#define TIPC_MEDIA_TYPE_ETH 1 59 | 1/* 2 * net/tipc/bearer.h: Include file for TIPC bearer code 3 * 4 * Copyright (c) 1996-2006, Ericsson AB 5 * Copyright (c) 2005, 2010-2011, Wind River Systems 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 43 unchanged lines hidden (view full) --- 52#define TIPC_MEDIA_ADDR_SIZE 20 53#define TIPC_MEDIA_TYPE_OFFSET 3 54 55/* 56 * Identifiers of supported TIPC media types 57 */ 58#define TIPC_MEDIA_TYPE_ETH 1 59 |
60/* | 60/** |
61 * struct tipc_media_addr - destination address used by TIPC bearers 62 * @value: address info (format defined by media) 63 * @media_id: TIPC media type identifier 64 * @broadcast: non-zero if address is a broadcast address 65 */ 66struct tipc_media_addr { 67 u8 value[TIPC_MEDIA_ADDR_SIZE]; 68 u8 media_id; --- 155 unchanged lines hidden --- | 61 * struct tipc_media_addr - destination address used by TIPC bearers 62 * @value: address info (format defined by media) 63 * @media_id: TIPC media type identifier 64 * @broadcast: non-zero if address is a broadcast address 65 */ 66struct tipc_media_addr { 67 u8 value[TIPC_MEDIA_ADDR_SIZE]; 68 u8 media_id; --- 155 unchanged lines hidden --- |