~james-page/ubuntu/saucy/openvswitch/1.12-snapshot

« back to all changes in this revision

Viewing changes to ofproto/in-band.h

  • Committer: James Page
  • Date: 2013-08-21 10:16:57 UTC
  • mfrom: (1.1.20)
  • Revision ID: james.page@canonical.com-20130821101657-3o0z0qeiv5zkwlzi
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (c) 2008, 2009, 2010, 2011 Nicira, Inc.
 
2
 * Copyright (c) 2008, 2009, 2010, 2011, 2013 Nicira, Inc.
3
3
 *
4
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
5
 * you may not use this file except in compliance with the License.
21
21
#include <stddef.h>
22
22
#include <sys/socket.h>
23
23
#include <netinet/in.h>
 
24
#include "flow.h"
24
25
 
25
26
struct flow;
26
27
struct in_band;
39
40
bool in_band_run(struct in_band *);
40
41
void in_band_wait(struct in_band *);
41
42
 
42
 
bool in_band_msg_in_hook(struct in_band *, const struct flow *,
43
 
                         const struct ofpbuf *packet);
44
 
bool in_band_rule_check(const struct flow *, uint32_t local_odp_port,
45
 
                        const struct nlattr *odp_actions, size_t actions_len);
 
43
bool in_band_must_output_to_local_port(const struct flow *);
46
44
 
47
45
#endif /* in-band.h */