]> git.proxmox.com Git - mirror_ovs.git/blame - lib/csum.h
docs: Document that --detach disables logging to the console.
[mirror_ovs.git] / lib / csum.h
CommitLineData
064af421 1/*
e0edde6f 2 * Copyright (c) 2008, 2011 Nicira, Inc.
064af421 3 *
a14bc59f
BP
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
064af421 7 *
a14bc59f
BP
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
064af421
BP
15 */
16
17#ifndef CSUM_H
18#define CSUM_H 1
19
20#include <stddef.h>
21#include <stdint.h>
6879df6b 22#include "openvswitch/types.h"
064af421 23
6879df6b
BP
24ovs_be16 csum(const void *, size_t);
25uint32_t csum_add16(uint32_t partial, ovs_be16);
26uint32_t csum_add32(uint32_t partial, ovs_be32);
064af421 27uint32_t csum_continue(uint32_t partial, const void *, size_t);
6879df6b
BP
28ovs_be16 csum_finish(uint32_t partial);
29ovs_be16 recalc_csum16(ovs_be16 old_csum, ovs_be16 old_u16, ovs_be16 new_u16);
30ovs_be16 recalc_csum32(ovs_be16 old_csum, ovs_be32 old_u32, ovs_be32 new_u32);
74ff3298
JR
31ovs_be16 recalc_csum48(ovs_be16 old_csum, const struct eth_addr old_mac,
32 const struct eth_addr new_mac);
4528f34f 33ovs_be16 recalc_csum128(ovs_be16 old_csum, ovs_16aligned_be32 old_u32[4],
bc7a5acd 34 const ovs_be32 new_u32[4]);
064af421
BP
35
36#endif /* csum.h */