1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>libfuse: example/ioctl_client.c File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">libfuse
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',false,false,'search.php','Search');
});
</script>
<div id="main-nav"></div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_cfafba98a580ce4b62f8a6fa96d7cbb0.html">example</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">ioctl_client.c File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <sys/types.h></code><br />
<code>#include <fcntl.h></code><br />
<code>#include <sys/stat.h></code><br />
<code>#include <sys/ioctl.h></code><br />
<code>#include <stdio.h></code><br />
<code>#include <stdlib.h></code><br />
<code>#include <ctype.h></code><br />
<code>#include <errno.h></code><br />
<code>#include "<a class="el" href="ioctl_8h_source.html">ioctl.h</a>"</code><br />
</div>
<p><a href="ioctl__client_8c_source.html">Go to the source code of this file.</a></p>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>This program tests the <a class="el" href="ioctl_8c.html">ioctl.c</a> example file systsem.</p>
<p>Compile with: </p><pre class="fragment">gcc -Wall ioctl_client.c -o ioctl_client
</pre><h2>Source code</h2>
<div class="fragment"><div class="line"><span class="comment">/*</span></div><div class="line"><span class="comment"> FUSE fioclient: FUSE ioctl example client</span></div><div class="line"><span class="comment"> Copyright (C) 2008 SUSE Linux Products GmbH</span></div><div class="line"><span class="comment"> Copyright (C) 2008 Tejun Heo <teheo@suse.de></span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment"> This program tests the ioctl.c example file systsem.</span></div><div class="line"><span class="comment"></span></div><div class="line"><span class="comment"> This program can be distributed under the terms of the GNU GPL.</span></div><div class="line"><span class="comment"> See the file COPYING.</span></div><div class="line"><span class="comment">*/</span></div><div class="line"></div><div class="line"><span class="preprocessor">#include <sys/types.h></span></div><div class="line"><span class="preprocessor">#include <fcntl.h></span></div><div class="line"><span class="preprocessor">#include <sys/stat.h></span></div><div class="line"><span class="preprocessor">#include <sys/ioctl.h></span></div><div class="line"><span class="preprocessor">#include <stdio.h></span></div><div class="line"><span class="preprocessor">#include <stdlib.h></span></div><div class="line"><span class="preprocessor">#include <ctype.h></span></div><div class="line"><span class="preprocessor">#include <errno.h></span></div><div class="line"><span class="preprocessor">#include "<a class="code" href="ioctl_8h.html">ioctl.h</a>"</span></div><div class="line"></div><div class="line"><span class="keyword">const</span> <span class="keywordtype">char</span> *usage =</div><div class="line"><span class="stringliteral">"Usage: fioclient FIOC_FILE [size]\n"</span></div><div class="line"><span class="stringliteral">"\n"</span></div><div class="line"><span class="stringliteral">"Get size if <size> is omitted, set size otherwise\n"</span></div><div class="line"><span class="stringliteral">"\n"</span>;</div><div class="line"></div><div class="line"><span class="keywordtype">int</span> main(<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span> **argv)</div><div class="line">{</div><div class="line"> <span class="keywordtype">size_t</span> size;</div><div class="line"> <span class="keywordtype">int</span> fd;</div><div class="line"></div><div class="line"> <span class="keywordflow">if</span> (argc < 2) {</div><div class="line"> fprintf(stderr, <span class="stringliteral">"%s"</span>, usage);</div><div class="line"> <span class="keywordflow">return</span> 1;</div><div class="line"> }</div><div class="line"></div><div class="line"> fd = open(argv[1], O_RDWR);</div><div class="line"> <span class="keywordflow">if</span> (fd < 0) {</div><div class="line"> perror(<span class="stringliteral">"open"</span>);</div><div class="line"> <span class="keywordflow">return</span> 1;</div><div class="line"> }</div><div class="line"></div><div class="line"> <span class="keywordflow">if</span> (argc == 2) {</div><div class="line"> <span class="keywordflow">if</span> (ioctl(fd, FIOC_GET_SIZE, &size)) {</div><div class="line"> perror(<span class="stringliteral">"ioctl"</span>);</div><div class="line"> <span class="keywordflow">return</span> 1;</div><div class="line"> }</div><div class="line"> printf(<span class="stringliteral">"%zu\n"</span>, size);</div><div class="line"> } <span class="keywordflow">else</span> {</div><div class="line"> size = strtoul(argv[2], NULL, 0);</div><div class="line"> <span class="keywordflow">if</span> (ioctl(fd, FIOC_SET_SIZE, &size)) {</div><div class="line"> perror(<span class="stringliteral">"ioctl"</span>);</div><div class="line"> <span class="keywordflow">return</span> 1;</div><div class="line"> }</div><div class="line"> }</div><div class="line"> <span class="keywordflow">return</span> 0;</div><div class="line">}</div></div><!-- fragment -->
<p class="definition">Definition in file <a class="el" href="ioctl__client_8c_source.html">ioctl_client.c</a>.</p>
</div></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|