summaryrefslogtreecommitdiffstats
path: root/include/stdio_dev.h
diff options
context:
space:
mode:
authorWalter Lozano <walter.lozano@collabora.com>2020-05-22 11:14:55 -0300
committerKever Yang <kever.yang@rock-chips.com>2020-05-29 18:04:14 +0800
commit22186f35ecb22612bff617c6efae9dd6acbb6e5e (patch)
treefa16273eb63e6f5816a53830cdf10185ebde3e1c /include/stdio_dev.h
parentdbd9d6cd9f5f80c40b84c1e56bf5337de34f89d6 (diff)
doc: board: rockchip: Improve supported board list format
As an additional step to move documentation to doc/boards/rockchip improve format of the supported board list to make it more readable. Additionally, add the configuration files used to build them based on doc/README.rockchip. Signed-off-by: Walter Lozano <walter.lozano@collabora.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'include/stdio_dev.h')
0 files changed, 0 insertions, 0 deletions
#ifndef PACKET_H_ #define PACKET_H_ /* this structure should go someday */ typedef struct packet_struct { int valid; uint32_t len; uint8_t type; } PACKET; /** different state of packet reading. */ enum ssh_packet_state_e { /** Packet not initialized, must read the size of packet */ PACKET_STATE_INIT, /** Size was read, waiting for the rest of data */ PACKET_STATE_SIZEREAD, /** Full packet was read and callbacks are being called. Future packets * should wait for the end of the callback. */ PACKET_STATE_PROCESSING }; int packet_send(ssh_session session); #ifdef WITH_SSH1 int packet_send1(ssh_session session) ; void ssh_packet_set_default_callbacks1(ssh_session session); SSH_PACKET_CALLBACK(ssh_packet_disconnect1); SSH_PACKET_CALLBACK(ssh_packet_smsg_success1); SSH_PACKET_CALLBACK(ssh_packet_smsg_failure1); int ssh_packet_socket_callback1(const void *data, size_t receivedlen, void *user); #endif SSH_PACKET_CALLBACK(ssh_packet_unimplemented); int ssh_packet_send_unimplemented(ssh_session session, uint32_t seqnum); int ssh_packet_parse_type(ssh_session session); //int packet_flush(ssh_session session, int enforce_blocking); #endif /* PACKET_H_ */