HP UX 11i v2 Networking Software manual 150

Page 150

Sample Programs

Connection Mode

/* send the BIND_REQ and wait for the OK_ACK */ put_ctrl(fd, sizeof(dl_bind_req_t), 0); get_msg(fd);

check_ctrl(DL_BIND_ACK);

/* return the DLSAP to the caller */ *dlsap_len = bind_ack->dl_addr_length;

dlsap_addr = (u_char *)ctrl_area + bind_ack->dl_addr_offset; memcpy(dlsap, dlsap_addr, *dlsap_len);

}

/************************************************************************** unbind, detach, and close

**************************************************************************/

void

 

 

cleanup(fd)

 

 

int

fd;

/* file descriptor */

{

 

 

dl_unbind_req_t *unbind_req = (dl_unbind_req_t *)ctrl_area; dl_detach_req_t *detach_req = (dl_detach_req_t *)ctrl_area;

/* unbind */

unbind_req->dl_primitive = DL_UNBIND_REQ; put_ctrl(fd, sizeof(dl_unbind_req_t), 0); get_msg(fd);

check_ctrl(DL_OK_ACK);

/* detach */

detach_req->dl_primitive = DL_DETACH_REQ; put_ctrl(fd, sizeof(dl_detach_req_t), 0); get_msg(fd);

check_ctrl(DL_OK_ACK);

/* close */ close(fd);

}

/************************************************************************** send a connect request to a DLSAP

**************************************************************************/

void

connect_req(fd, dlsap, dlsap_len)

int

fd;

/* file descriptor */

u_char

*dlsap;

/* DLSAP to connect with */

int

dlsap_len;

/* length of dlsap */

{

 

 

dl_connect_req_t

*con_req = (dl_connect_req_t *)ctrl_area;

dl_connect_res_t

*con_res = (dl_connect_res_t *)ctrl_area;

u_char

*tdlsap;

 

/* fill in the connect request */

con_req->dl_primitive = DL_CONNECT_REQ; con_req->dl_dest_addr_length = dlsap_len; con_req->dl_dest_addr_offset = sizeof(dl_connect_req_t);

/* QOS is not supported; these fields must be set to zero */ con_req->dl_qos_length = 0;

con_req->dl_qos_offset = 0;

150

Appendix A

Image 150
Contents Dlpi Programmer’s Guide EditionLegal Notices Page Page Contents Contents Contents Sample Programs Printing History Page Preface Appendix a Sample ProgramsPage Introduction to Dlpi Introduction to Dlpi HP Dlpi Features Device File Format Header FilesService Interface Data Link LayerDlpi Connection-mode Service Modes of CommunicationData Link Layer Connectionless-mode Service Dlpi AddressingPhysical Attachment Identification HP PPA Format Data Link User Identification HP’s Dlsap Address Format 802.3, Ethernet, Token Ring, FddiHP’s Dlsap Address Format for Fibre Channel Dlsap Promiscuous Mode Clarifications Dlpi Services Dlinfoack DlerrorackDlinforeq DlhpppareqDlresetres DlresetreqDlresetind DlresetconDlhprawdatareq Local Management ServicesInformation Reporting Service DlhprawdataindAttach Service Bind ServiceBinding Reserved IEEESAPS/EthertypesSnap Message Flow Binding a Stream to a Dlsap Message Flow Enabling a Specific Multicast Address on a Connection-mode Services Connection Establishment ServiceConnection Handoff 12 Message Flow Successful Connection Establishment13 Message Flow Token Retrieval 16 Message Flow Both Primitives are Destroyed by Provider Data Transfer Service 19 Message Flow Normal Data TransferConnection Release Service 20 Message Flow DLS User-Invoked Connection ReleaseReset Service 23 Message Flow DLS User-Invoked Connection Reset Connectionless-mode Services Connectionless Data TransferRaw-mode Services Error Reporting ServiceXID and Test Service Raw-mode Data Transfer31 Message Flow XID Service XID and Test Packet Handling32 Message Flow Test Service An Example33 Message Flow a Connection-Mode Example Dlpi Primitives Dlpi Primitives Local Management Primitives PPA Initialization/De-initializationDlhpppareq Dlhpppaack Dlhpppaack Dlinforeq MTUDlinfoack Dltpr DlcsmacdDltpb DlmetroDlfddi DlcharDlctca DlotherDlhprawdls DlacldlsDlunknown DLSTYLE1 DLSTYLE2Dlaccess DlattachreqDlbadppa Dldetachreq DloutstateDlsyserr Dlbindreq Dlbadaddr DlinitfailedDlnotinit Dlbindack Dlunbindreq Dlsubsbindreq Dlpeerbind DlhierarchicalbindDlsubsbindack DltoomanyDlsubsunbindreq Dlenabmultireq Dldisabmultireq DlnotsupportedDlpromisconreq DlnotenabDlpromiscphys DlpromiscsapDlpromiscmulti Dlpromiscoffreq Dlokack Dlerrorack Dlphysaddrreq Dlfactphysaddr Dlcurrphysaddr Dlphysaddrack DlphysaddrackDlsetphysaddrreq DlphysaddrreqDlsetphysaddrreq Dlbusy DlgetstatisticsreqDlgetstatisticsack DlgetstatisticsreqDlhpmulticastlistreq DlgetstatisticsackDlhpmulticastlistack Dlhpmulticastlistack Connectionless-mode Service Primitives DlunitdatareqDlbaddata Dlunitdataind Dluderrorind Message is valid in state Dlidle Raw Mode Service Primitives DlhprawdatareqDlhprawdataind DlbadprimRaw Mode Service Primitives Connection-mode Service Primitives Connection-Oriented Dlpi ExtensionsDlhpinforeq Dlhpinfoack DlhpinforeqDlhpinfoack Connection-mode Service Primitives Connection-mode Service Primitives Dlhpsetacktoreq DlhpsetacktoreqDlhpsetptoreq DlhpsetptoreqDlhpsetrejtoreq DlhpsetbusytoreqDlhpsetrejtoreq Dlhpsetsendacktoreq DlhpsetbusytoreqDlhpsetmaxretriesreq DlhpsetsendacktoreqDlhpsetmaxretriesreq Dlhpsetackthreshreq DLOUTCONPENDING, DlinconpendingDlhpsetlocalwinreq Dlhpsetremotewinreq Dlhpclearstatsreq DlhpsetremotewinreqDlhpsetlocalbusyreq DlhpclearstatsreqDlhpsetlocalbusyreq Dlhpclearlocalbusyreq DlhpclearlocalbusyreqDlconnectreq Dlconnectind DlbadqosparamDlbadqostype 112 Dlconnectres 114 Dlbadcorr DlconnectconDlbadtoken Dlpending116 Dltokenreq DltokenackDldatareq Dldataind Dldisconnectreq120 Dldisconnectind Dlresetreq Dlresetind Dlresetres Dlresetcon 126 Primitives to Handle XID and Test Operations DltestreqDltestind DltestautoChapter 129 Dltestres Dltestcon Dlxidreq Dlxidind Dlxidauto134 Dlxidres DlpollfinalDlxidcon Chapter 137 Dlpi States Dlresetres Resetres User Reset DluserresetDlresetcon Prov Reset Dlprovreset Udqos Pend DludqosDlinconpending DLDISCON9Pend Pending DLDISCON11Chapter 141 142 Sample Programs Connection Mode LongareasizeAppendix a 145 146 Appendix a 147 148 Appendix a 149 150 Appendix a 151 152 Appendix a 153 154 Appendix a 155 Connectionless Mode Snap SAPAppendix a 157 158 Appendix a 159 160 Appendix a 161 162 Appendix a 163 164 Appendix a 165 166 Raw Mode 168 Appendix a 169 170 Appendix a 171 Raw Mode 172 Glossary Connection establishment174 Glossary Index
Related manuals
Manual 94 pages 16.8 Kb Manual 74 pages 39 Kb Manual 236 pages 18.16 Kb Manual 12 pages 39.66 Kb Manual 28 pages 49.76 Kb