1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef __NETIUCV_IUCV_H
- #define __NETIUCV_IUCV_H 1
- #include <features.h>
- #include <bits/sockaddr.h>
- __BEGIN_DECLS
- struct sockaddr_iucv
- {
- __SOCKADDR_COMMON (siucv_);
- unsigned short siucv_port;
- unsigned int siucv_addr;
- char siucv_nodeid[8];
- char siucv_user_id[8];
- char siucv_name[8];
- };
- __END_DECLS
- #endif
|