1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:27:45 +00:00

LibC+ping: Move internet_checksum to serenity header

This will be useful for traceroute and any other packet related
application, so this will reduce code duplication.
This commit is contained in:
Idan Horowitz 2021-03-30 21:18:28 +03:00 committed by Andreas Kling
parent ea34ba6fa6
commit aa6547492e
3 changed files with 19 additions and 15 deletions

View file

@ -109,4 +109,6 @@ int serenity_readlink(const char* path, size_t path_length, char* buffer, size_t
int getkeymap(char* name_buffer, size_t name_buffer_size, uint32_t* map, uint32_t* shift_map, uint32_t* alt_map, uint32_t* altgr_map, uint32_t* shift_altgr_map);
int setkeymap(const char* name, const uint32_t* map, uint32_t* const shift_map, const uint32_t* alt_map, const uint32_t* altgr_map, const uint32_t* shift_altgr_map);
uint16_t internet_checksum(const void* ptr, size_t count);
__END_DECLS