OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:packet_type
(Results
1 - 23
of
23
) sorted by null
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketChannelOpenConfirmation.java
40
int
packet_type
= tr.readByte();
local
42
if (
packet_type
!= Packets.SSH_MSG_CHANNEL_OPEN_CONFIRMATION)
45
+
packet_type
+ ")");
PacketChannelOpenFailure.java
40
int
packet_type
= tr.readByte();
local
42
if (
packet_type
!= Packets.SSH_MSG_CHANNEL_OPEN_FAILURE)
45
+
packet_type
+ ")");
PacketChannelWindowAdjust.java
35
int
packet_type
= tr.readByte();
local
37
if (
packet_type
!= Packets.SSH_MSG_CHANNEL_WINDOW_ADJUST)
40
+
packet_type
+ ")");
PacketDisconnect.java
29
int
packet_type
= tr.readByte();
local
31
if (
packet_type
!= Packets.SSH_MSG_DISCONNECT)
33
+
packet_type
+ ")");
PacketIgnore.java
38
int
packet_type
= tr.readByte();
local
40
if (
packet_type
!= Packets.SSH_MSG_IGNORE)
41
throw new IOException("This is not a SSH_MSG_IGNORE packet! (" +
packet_type
+ ")");
PacketKexDHReply.java
32
int
packet_type
= tr.readByte();
local
34
if (
packet_type
!= Packets.SSH_MSG_KEXDH_REPLY)
36
+
packet_type
+ ")");
PacketKexDhGexGroup.java
31
int
packet_type
= tr.readByte();
local
33
if (
packet_type
!= Packets.SSH_MSG_KEX_DH_GEX_GROUP)
35
"This is not a SSH_MSG_KEX_DH_GEX_GROUP! (" +
packet_type
PacketKexDhGexReply.java
32
int
packet_type
= tr.readByte();
local
34
if (
packet_type
!= Packets.SSH_MSG_KEX_DH_GEX_REPLY)
35
throw new IOException("This is not a SSH_MSG_KEX_DH_GEX_REPLY! (" +
packet_type
+ ")");
PacketNewKeys.java
30
int
packet_type
= tr.readByte();
local
32
if (
packet_type
!= Packets.SSH_MSG_NEWKEYS)
34
+
packet_type
+ ")");
PacketOpenSessionChannel.java
38
int
packet_type
= tr.readByte();
local
40
if (
packet_type
!= Packets.SSH_MSG_CHANNEL_OPEN)
42
+
packet_type
+ ")");
PacketServiceAccept.java
33
int
packet_type
= tr.readByte();
local
35
if (
packet_type
!= Packets.SSH_MSG_SERVICE_ACCEPT)
37
+
packet_type
+ ")");
PacketServiceRequest.java
33
int
packet_type
= tr.readByte();
local
35
if (
packet_type
!= Packets.SSH_MSG_SERVICE_REQUEST)
37
+
packet_type
+ ")");
PacketUserauthBanner.java
40
int
packet_type
= tr.readByte();
local
42
if (
packet_type
!= Packets.SSH_MSG_USERAUTH_BANNER)
43
throw new IOException("This is not a SSH_MSG_USERAUTH_BANNER! (" +
packet_type
+ ")");
PacketUserauthFailure.java
35
int
packet_type
= tr.readByte();
local
37
if (
packet_type
!= Packets.SSH_MSG_USERAUTH_FAILURE)
38
throw new IOException("This is not a SSH_MSG_USERAUTH_FAILURE! (" +
packet_type
+ ")");
PacketUserauthRequestNone.java
35
int
packet_type
= tr.readByte();
local
37
if (
packet_type
!= Packets.SSH_MSG_USERAUTH_REQUEST)
38
throw new IOException("This is not a SSH_MSG_USERAUTH_REQUEST! (" +
packet_type
+ ")");
PacketUserauthRequestPassword.java
37
int
packet_type
= tr.readByte();
local
39
if (
packet_type
!= Packets.SSH_MSG_USERAUTH_REQUEST)
40
throw new IOException("This is not a SSH_MSG_USERAUTH_REQUEST! (" +
packet_type
+ ")");
PacketUserauthRequestPublicKey.java
43
int
packet_type
= tr.readByte();
local
45
if (
packet_type
!= Packets.SSH_MSG_USERAUTH_REQUEST)
47
+
packet_type
+ ")");
PacketUserauthInfoRequest.java
34
int
packet_type
= tr.readByte();
local
36
if (
packet_type
!= Packets.SSH_MSG_USERAUTH_INFO_REQUEST)
37
throw new IOException("This is not a SSH_MSG_USERAUTH_INFO_REQUEST! (" +
packet_type
+ ")");
PacketKexInit.java
51
int
packet_type
= tr.readByte();
local
53
if (
packet_type
!= Packets.SSH_MSG_KEXINIT)
54
throw new IOException("This is not a KexInitPacket! (" +
packet_type
+ ")");
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java
641
final int
packet_type
= header.getInt();
local
645
switch (
packet_type
) {
684
Loge("Unknown packet type " +
packet_type
+ " in Channel "
/external/wpa_supplicant_8/src/ap/
wpa_auth.h
24
u8
packet_type
; /* FT_PACKET_REQUEST/FT_PACKET_RESPONSE */
member in struct:ft_rrb_frame
48
u8
packet_type
; /* FT_PACKET_R0KH_R1KH_PULL */
member in struct:ft_r0kh_r1kh_pull_frame
62
u8
packet_type
; /* FT_PACKET_R0KH_R1KH_RESP */
member in struct:ft_r0kh_r1kh_resp_frame
78
u8
packet_type
; /* FT_PACKET_R0KH_R1KH_PUSH */
member in struct:ft_r0kh_r1kh_push_frame
/external/kernel-headers/original/linux/
netdevice.h
546
struct
packet_type
{
struct
551
struct
packet_type
*,
571
extern void dev_add_pack(struct
packet_type
*pt);
572
extern void dev_remove_pack(struct
packet_type
*pt);
573
extern void __dev_remove_pack(struct
packet_type
*pt);
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bt_amp_hci.h
164
uint8
packet_type
;
member in struct:eflush_cmd_parms
Completed in 298 milliseconds