~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to slirp/sbuf.c

  • Committer: blueswir1
  • Date: 2007-10-26 19:01:16 UTC
  • Revision ID: git-v1:9634d9031c140b24c7ca0d8872632207f6ce7275
 Use const and static as needed, disable unused code


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3452 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
#include <slirp.h>
9
9
 
 
10
static void sbappendsb(struct sbuf *sb, struct mbuf *m);
 
11
 
10
12
/* Done as a macro in socket.h */
11
13
/* int
12
14
 * sbspace(struct sockbuff *sb)
133
135
 * Copy the data from m into sb
134
136
 * The caller is responsible to make sure there's enough room
135
137
 */
136
 
void
137
 
sbappendsb(sb, m)
138
 
         struct sbuf *sb;
139
 
         struct mbuf *m;
 
138
static void
 
139
sbappendsb(struct sbuf *sb, struct mbuf *m)
140
140
{
141
141
        int len, n,  nn;
142
142