Searched defs:protocol (Results 1 - 25 of 52) sorted by relevance

123

/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Draw.h47 u16_t protocol; member in struct:raw_pcb
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Durl.c30 int crParseURL( const char *url, char *protocol, char *hostname, argument
35 /* pull off the protocol */
37 if ( temp == NULL && protocol != NULL )
39 crStrcpy( protocol, "tcpip" );
44 if (protocol != NULL) {
46 crStrncpy( protocol, url, len );
47 protocol[len] = 0;
91 crWarning( "URL: expected <protocol>://"
H A Dnet.c71 * Call the protocol-specific Init() and Connection() functions.
75 InitConnection(CRConnection *conn, const char *protocol, unsigned int mtu argument
81 if (!crStrcmp(protocol, "devnull"))
86 else if (!crStrcmp(protocol, "file"))
92 else if (!crStrcmp(protocol, "swapfile"))
100 else if (!crStrcmp(protocol, "tcpip"))
106 else if (!crStrcmp(protocol, "udptcpip"))
113 else if (!crStrcmp(protocol, "vboxhgcm"))
125 else if (!crStrcmp(protocol, "gm"))
133 else if (!crStrcmp(protocol, "quadric
200 char hostname[4096], protocol[4096]; local
346 crNetAcceptClient( const char *protocol, const char *hostname, unsigned short port, unsigned int mtu, int broker ) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Draw.h91 u8_t protocol; member in struct:raw_pcb
/vbox/src/VBox/NetworkServices/NAT/
H A DRTWinSocketPair.cpp31 extern "C" int RTWinSocketPair(int domain, int type, int protocol, SOCKET socket_vector[2]) argument
33 LogFlowFunc(("ENTER: domain:%d, type:%d, protocol:%d, socket_vector:%p\n",
34 domain, type, protocol, socket_vector));
78 listener = WSASocket(domain, type, protocol, 0, NULL, 0);
114 socket_vector[0] = WSASocket(domain, type, protocol, 0, NULL, 0);
135 socket_vector[0] = WSASocket(domain, type, protocol, 0, NULL, 0);
149 socket_vector[1] = WSASocket(domain, type, protocol, 0, NULL, 0);
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/
H A Defi.h54 /** An EFI protocol used by iPXE */
58 /** EFI protocol GUID */
63 /** Variable containing pointer to protocol structure */
64 void **protocol; member in struct:efi_protocol
67 /** EFI protocol table */
70 /** Declare an EFI protocol used by iPXE */
73 /** Declare an EFI protocol to be required by iPXE
75 * @v _protocol EFI protocol name
76 * @v _ptr Pointer to protocol instance
81 .protocol
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/converter/
H A DUIConverterBackendCOM.cpp513 template<> QString toString(const KNATProtocol &protocol) argument
515 switch (protocol)
519 AssertMsgFailed(("No text for %d", protocol)); break;
525 template<> QString toInternalString(const KNATProtocol &protocol) argument
528 switch (protocol)
534 AssertMsgFailed(("No text for protocol type=%d", protocol));
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dip.h6 * IP protocol
42 uint8_t protocol; member in struct:iphdr
53 uint8_t protocol; member in struct:ipv4_pseudo_header
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUIPortForwardingTable.h75 UIPortForwardingData(const NameData &strName, KNATProtocol protocol, argument
78 : name(strName), protocol(protocol)
84 protocol == other.protocol &&
91 KNATProtocol protocol; member in struct:UIPortForwardingData
H A DUIPortForwardingTable.cpp155 Q_PROPERTY(KNATProtocol protocol READ protocol WRITE setProtocol USER true);
196 KNATProtocol protocol() const function in class:ProtocolEditor
383 m_dataList << UIPortForwardingData(strTemplate.arg(++uMaxIndex), m_dataList[index.row()].protocol,
457 case UIPortForwardingDataType_Protocol: return gpConverter->toString(m_dataList[index.row()].protocol);
472 case UIPortForwardingDataType_Protocol: return QVariant::fromValue(m_dataList[index.row()].protocol);
527 m_dataList[index.row()].protocol = value.value<KNATProtocol>();
646 /* Register protocol type: */
648 /* Register protocol editor: */
650 /* Link protocol typ
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dns_print.c355 /* XXX protocol format checking? */
472 u_int keyflags, protocol, algorithm; local
481 protocol = *rdata++;
484 keyflags, protocol, algorithm));
664 * 0 for protocol format error
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dfsm.h109 u_short protocol; /* Data Link Layer Protocol field value */ member in struct:fsm
122 char* term_reason; /* Reason for closing protocol */
156 char *proto_name; /* String name for protocol (for messages) */
H A Dauth.c217 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL)
219 if (protp->protocol < 0xC000 && protp->close != NULL)
249 if (protp->protocol != PPP_LCP && protp->enabled_flag
311 * The peer has failed to authenticate himself using `protocol'.
313 void auth_peer_fail(int unit, u16_t protocol) argument
315 AUTHDEBUG((LOG_INFO, "auth_peer_fail: %d proto=%X\n", unit, protocol));
325 * The peer has been successfully authenticated using `protocol'.
327 void auth_peer_success(int unit, u16_t protocol, char *name, int namelen) argument
331 AUTHDEBUG((LOG_INFO, "auth_peer_success: %d proto=%X\n", unit, protocol));
332 switch (protocol) {
364 auth_withpeer_fail(int unit, u16_t protocol) argument
388 auth_withpeer_success(int unit, u16_t protocol) argument
[all...]
H A Dppp.h142 #define PPP_LQR 0xc025 /* Link Quality Report protocol */
159 * What to do with network protocol (NP) packets.
238 #define PPPERR_PROTOCOL -8 /* Failed to meet protocol. */
258 * for a particular protocol.
261 u_short protocol; /* PPP protocol number */ member in struct:protent
266 /* Process a received protocol-reject */
272 /* Open the protocol */
274 /* Close the protocol */
284 int enabled_flag; /* 0 iff protocol i
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dfsm.h80 u_short protocol; /* Data Link Layer Protocol field value */ member in struct:fsm
93 char* term_reason; /* Reason for closing protocol */
113 char *proto_name; /* String name for protocol (for messages) */
H A Dauth.c422 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL) {
425 if (protp->protocol < 0xC000 && protp->close != NULL) {
459 if (protp->protocol != PPP_LCP && protp->enabled_flag && protp->lowerup != NULL) {
552 if (protp->protocol < 0xC000 && protp->enabled_flag && protp->open != NULL) {
554 if (protp->protocol != PPP_CCP) {
568 * The peer has failed to authenticate himself using `protocol'.
571 auth_peer_fail(int unit, u16_t protocol) argument
573 LWIP_UNUSED_ARG(protocol);
575 AUTHDEBUG(LOG_INFO, ("auth_peer_fail: %d proto=%X\n", unit, protocol));
585 * The peer has been successfully authenticated using `protocol'
588 auth_peer_success(int unit, u16_t protocol, char *name, int namelen) argument
627 auth_withpeer_fail(int unit, u16_t protocol) argument
651 auth_withpeer_success(int unit, u16_t protocol) argument
[all...]
H A Dppp_impl.h146 #define PPP_LQR 0xc025 /* Link Quality Report protocol */
163 * What to do with network protocol (NP) packets.
236 * for a particular protocol.
239 u_short protocol; /* PPP protocol number */ member in struct:protent
244 /* Process a received protocol-reject */
250 /* Open the protocol */
252 /* Close the protocol */
262 int enabled_flag; /* 0 if protocol is disabled */
263 char *name; /* Text name of protocol */
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/drivers/net/
H A Dundinet.c189 uint8_t protocol; local
218 protocol = P_IP;
221 protocol = P_ARP;
224 protocol = P_RARP;
227 /* Unknown protocol; restore the original link-layer header */
229 protocol = P_UNKNOWN;
241 undi_transmit.Protocol = protocol;
/vbox/src/VBox/HostServices/SharedOpenGL/render/
H A Drenderspu_config.c130 char protocol[4096], hostname[4096]; local
133 if (!crParseURL(response, protocol, hostname, &port, 0))
H A Drenderspu_init.c37 char hostname[4096], protocol[4096]; local
42 if (!crParseURL( render_spu.swap_master_url, protocol, hostname,
54 render_spu.swap_conns[a] = crNetAcceptClient( protocol, hostname, port,
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dxtraplib.h121 CARD16 protocol /*B16*/; /* The xtrap extension protocol number */ member in struct:_XETC
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcnetio.cpp52 RCNetStreamIO::RCNetStreamIO(PRIntn protocol): RCIO(RCIO::tcp) argument
53 { fd = PR_Socket(PR_AF_INET, PR_SOCK_STREAM, protocol); }
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dthruput.c69 static PRInt32 protocol = 6; /* TCP */ variable
117 xport = PR_Socket(domain, PR_SOCK_STREAM, protocol);
266 PRFileDesc *xport = PR_Socket(domain, PR_SOCK_STREAM, protocol);
343 protocol = 36;
377 (6 == protocol) ? "TCP" : "XTP");
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/
H A Dphantom_hw.h51 pseudo_bit_t protocol[4]; /**< Protocol */ member in struct:phantom_sds_pb
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dsockets.c565 lwip_socket(int domain, int type, int protocol) argument
573 conn = netconn_new_with_proto_and_callback(NETCONN_RAW, protocol, event_callback);
574 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%s, SOCK_RAW, %d) = ", domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol));
578 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%s, SOCK_DGRAM, %d) = ", domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol));
582 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%s, SOCK_STREAM, %d) = ", domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol));
585 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_socket(%d, %d/UNKNOWN, %d) = -1\n", domain, type, protocol));

Completed in 102 milliseconds

123